Fix generator-method-with-computed-name spec (#360)

This commit is contained in:
Alex Rattray 2017-02-22 07:21:44 -08:00 committed by Daniel Tschinder
parent fab4ca2a18
commit 94eda1254e
3 changed files with 198 additions and 4 deletions

View File

@ -1,3 +1,3 @@
(function*() {
{ *[yield iter]() {} }
return { *[yield iter]() {} }
})

View File

@ -0,0 +1,197 @@
{
"type": "File",
"start": 0,
"end": 51,
"loc": {
"start": {
"line": 1,
"column": 0
},
"end": {
"line": 3,
"column": 2
}
},
"program": {
"type": "Program",
"start": 0,
"end": 51,
"loc": {
"start": {
"line": 1,
"column": 0
},
"end": {
"line": 3,
"column": 2
}
},
"sourceType": "script",
"body": [
{
"type": "ExpressionStatement",
"start": 0,
"end": 51,
"loc": {
"start": {
"line": 1,
"column": 0
},
"end": {
"line": 3,
"column": 2
}
},
"expression": {
"type": "FunctionExpression",
"start": 1,
"end": 50,
"loc": {
"start": {
"line": 1,
"column": 1
},
"end": {
"line": 3,
"column": 1
}
},
"id": null,
"generator": true,
"expression": false,
"async": false,
"params": [],
"body": {
"type": "BlockStatement",
"start": 13,
"end": 50,
"loc": {
"start": {
"line": 1,
"column": 13
},
"end": {
"line": 3,
"column": 1
}
},
"body": [
{
"type": "ReturnStatement",
"start": 19,
"end": 48,
"loc": {
"start": {
"line": 2,
"column": 4
},
"end": {
"line": 2,
"column": 33
}
},
"argument": {
"type": "ObjectExpression",
"start": 26,
"end": 48,
"loc": {
"start": {
"line": 2,
"column": 11
},
"end": {
"line": 2,
"column": 33
}
},
"properties": [
{
"type": "ObjectMethod",
"start": 28,
"end": 46,
"loc": {
"start": {
"line": 2,
"column": 13
},
"end": {
"line": 2,
"column": 31
}
},
"method": true,
"shorthand": false,
"computed": true,
"key": {
"type": "YieldExpression",
"start": 30,
"end": 40,
"loc": {
"start": {
"line": 2,
"column": 15
},
"end": {
"line": 2,
"column": 25
}
},
"delegate": false,
"argument": {
"type": "Identifier",
"start": 36,
"end": 40,
"loc": {
"start": {
"line": 2,
"column": 21
},
"end": {
"line": 2,
"column": 25
},
"identifierName": "iter"
},
"name": "iter"
}
},
"kind": "method",
"id": null,
"generator": true,
"expression": false,
"async": false,
"params": [],
"body": {
"type": "BlockStatement",
"start": 44,
"end": 46,
"loc": {
"start": {
"line": 2,
"column": 29
},
"end": {
"line": 2,
"column": 31
}
},
"body": [],
"directives": []
}
}
]
}
}
],
"directives": []
},
"extra": {
"parenthesized": true,
"parenStart": 0
}
}
}
],
"directives": []
}
}

View File

@ -1,3 +0,0 @@
{
"throws": "Unexpected token (2:6)"
}