Update cases for async fns with a line terminator

This commit is contained in:
Leo Balter 2017-04-06 16:05:05 -04:00
parent 5038754462
commit 4941d46a28
No known key found for this signature in database
GPG Key ID: 2C75F319D398E36B
3 changed files with 7 additions and 8 deletions

View File

@ -4,10 +4,9 @@
/*---
esid: prod-AsyncArrowFunction
description: async arrows cannot have a line terminator between "async" and the AsyncArrowBindingIdentifier
negative:
phase: early
type: ReferenceError
---*/
async
foo => { }
assert.throws(ReferenceError, function() {
async
identifier => {}
});

View File

@ -10,4 +10,4 @@ negative:
---*/
async
(foo,bar) => { }
(foo) => { }

View File

@ -9,7 +9,7 @@ negative:
type: SyntaxError
---*/
{
!{
async
foo () { }
foo() { }
}