From 01e984fd0f21bb284943a508d2acc7c458aab13e Mon Sep 17 00:00:00 2001 From: Andrew Levine Date: Mon, 17 Oct 2016 09:33:18 -0500 Subject: [PATCH] Allow "async" as identifier for object literal property shorthand (#187) --- src/parser/expression.js | 2 +- test/fixtures/es2015/regression/186/actual.js | 1 + .../es2015/regression/186/expected.json | 210 ++++++++++++++++++ 3 files changed, 212 insertions(+), 1 deletion(-) create mode 100644 test/fixtures/es2015/regression/186/actual.js create mode 100644 test/fixtures/es2015/regression/186/expected.json diff --git a/src/parser/expression.js b/src/parser/expression.js index 61f458aa66..c451cb6a50 100644 --- a/src/parser/expression.js +++ b/src/parser/expression.js @@ -762,7 +762,7 @@ pp.parseObj = function (isPattern, refShorthandDefaultPos) { if (isGenerator) this.unexpected(); let asyncId = this.parseIdentifier(); - if (this.match(tt.colon) || this.match(tt.parenL) || this.match(tt.braceR) || this.match(tt.eq)) { + if (this.match(tt.colon) || this.match(tt.parenL) || this.match(tt.braceR) || this.match(tt.eq) || this.match(tt.comma)) { prop.key = asyncId; } else { isAsync = true; diff --git a/test/fixtures/es2015/regression/186/actual.js b/test/fixtures/es2015/regression/186/actual.js new file mode 100644 index 0000000000..8c40633e12 --- /dev/null +++ b/test/fixtures/es2015/regression/186/actual.js @@ -0,0 +1 @@ +const x = {async, bar}; diff --git a/test/fixtures/es2015/regression/186/expected.json b/test/fixtures/es2015/regression/186/expected.json new file mode 100644 index 0000000000..fc3a010f4e --- /dev/null +++ b/test/fixtures/es2015/regression/186/expected.json @@ -0,0 +1,210 @@ +{ + "type": "File", + "start": 0, + "end": 23, + "loc": { + "start": { + "line": 1, + "column": 0 + }, + "end": { + "line": 1, + "column": 23 + } + }, + "program": { + "type": "Program", + "start": 0, + "end": 23, + "loc": { + "start": { + "line": 1, + "column": 0 + }, + "end": { + "line": 1, + "column": 23 + } + }, + "sourceType": "script", + "body": [ + { + "type": "VariableDeclaration", + "start": 0, + "end": 23, + "loc": { + "start": { + "line": 1, + "column": 0 + }, + "end": { + "line": 1, + "column": 23 + } + }, + "declarations": [ + { + "type": "VariableDeclarator", + "start": 6, + "end": 22, + "loc": { + "start": { + "line": 1, + "column": 6 + }, + "end": { + "line": 1, + "column": 22 + } + }, + "id": { + "type": "Identifier", + "start": 6, + "end": 7, + "loc": { + "start": { + "line": 1, + "column": 6 + }, + "end": { + "line": 1, + "column": 7 + }, + "identifierName": "x" + }, + "name": "x" + }, + "init": { + "type": "ObjectExpression", + "start": 10, + "end": 22, + "loc": { + "start": { + "line": 1, + "column": 10 + }, + "end": { + "line": 1, + "column": 22 + } + }, + "properties": [ + { + "type": "ObjectProperty", + "start": 11, + "end": 16, + "loc": { + "start": { + "line": 1, + "column": 11 + }, + "end": { + "line": 1, + "column": 16 + } + }, + "method": false, + "shorthand": true, + "key": { + "type": "Identifier", + "start": 11, + "end": 16, + "loc": { + "start": { + "line": 1, + "column": 11 + }, + "end": { + "line": 1, + "column": 16 + }, + "identifierName": "async" + }, + "name": "async" + }, + "value": { + "type": "Identifier", + "start": 11, + "end": 16, + "loc": { + "start": { + "line": 1, + "column": 11 + }, + "end": { + "line": 1, + "column": 16 + }, + "identifierName": "async" + }, + "name": "async" + }, + "extra": { + "shorthand": true + } + }, + { + "type": "ObjectProperty", + "start": 18, + "end": 21, + "loc": { + "start": { + "line": 1, + "column": 18 + }, + "end": { + "line": 1, + "column": 21 + } + }, + "method": false, + "shorthand": true, + "computed": false, + "key": { + "type": "Identifier", + "start": 18, + "end": 21, + "loc": { + "start": { + "line": 1, + "column": 18 + }, + "end": { + "line": 1, + "column": 21 + }, + "identifierName": "bar" + }, + "name": "bar" + }, + "value": { + "type": "Identifier", + "start": 18, + "end": 21, + "loc": { + "start": { + "line": 1, + "column": 18 + }, + "end": { + "line": 1, + "column": 21 + }, + "identifierName": "bar" + }, + "name": "bar" + }, + "extra": { + "shorthand": true + } + } + ] + } + } + ], + "kind": "const" + } + ], + "directives": [] + } +} \ No newline at end of file