Skip to content

Commit a9d3a0d

Browse files
targosBethGriggs
authored andcommitted
assert,repl: enable ecmaVersion 2021 in acorn parser
This adds support for the new logical assignment operators. PR-URL: #35827 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Anto Aravinth <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Gus Caplan <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
1 parent a5b9418 commit a9d3a0d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/assert.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ function parseCode(code, offset) {
239239
// Parse the read code until the correct expression is found.
240240
do {
241241
try {
242-
node = parseExpressionAt(code, start, { ecmaVersion: 11 });
242+
node = parseExpressionAt(code, start, { ecmaVersion: 'latest' });
243243
start = node.end + 1 || start;
244244
// Find the CallExpression in the tree.
245245
node = findNodeAround(node, offset, 'CallExpression');

lib/internal/repl/await.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ function processTopLevelAwait(src) {
9090
const wrappedArray = wrapped.split('');
9191
let root;
9292
try {
93-
root = parser.parse(wrapped, { ecmaVersion: 11 });
93+
root = parser.parse(wrapped, { ecmaVersion: 'latest' });
9494
} catch {
9595
return null;
9696
}

lib/internal/repl/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ function isRecoverableError(e, code) {
114114
// Try to parse the code with acorn. If the parse fails, ignore the acorn
115115
// error and return the recoverable status.
116116
try {
117-
RecoverableParser.parse(code, { ecmaVersion: 11 });
117+
RecoverableParser.parse(code, { ecmaVersion: 'latest' });
118118

119119
// Odd case: the underlying JS engine (V8, Chakra) rejected this input
120120
// but Acorn detected no issue. Presume that additional text won't

0 commit comments

Comments
 (0)