Skip to content

Commit fac6111

Browse files
not-an-aardvarkMylesBorins
authored andcommitted
repl: avoid parsing division operator as regex
This improves the heuristic used in multiline-prompt mode to determine whether a given slash character is at the beginning of a regular expression. PR-URL: #10103 Reviewed-By: Prince John Wesley <[email protected]> Reviewed-By: James M Snell <[email protected]> Fixes: #9300
1 parent 6dbff7a commit fac6111

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

lib/repl.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ class LineParser {
9393
this.shouldFail = false;
9494
this.blockComment = false;
9595
this.regExpLiteral = false;
96+
this.prevTokenChar = null;
9697
}
9798

9899
parseLine(line) {
@@ -132,7 +133,11 @@ class LineParser {
132133
if (previous === '/') {
133134
if (current === '*') {
134135
this.blockComment = true;
135-
} else {
136+
} else if (
137+
// Distinguish between a division operator and the start of a regex
138+
// by examining the non-whitespace character that precedes the /
139+
[null, '(', '[', '{', '}', ';'].includes(this.prevTokenChar)
140+
) {
136141
this.regExpLiteral = true;
137142
}
138143
previous = null;
@@ -147,6 +152,8 @@ class LineParser {
147152
this._literal = this._literal || current;
148153
}
149154

155+
if (current.trim() && current !== '/') this.prevTokenChar = current;
156+
150157
previous = current;
151158
}
152159

test/parallel/test-repl.js

+10
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,16 @@ function error_test() {
352352

353353
{ client: client_unix, send: 'function * foo() {}; foo().next()',
354354
expect: '{ value: undefined, done: true }' },
355+
356+
// https://github.com/nodejs/node/issues/9300
357+
{ client: client_unix, send: 'function foo() {\nvar bar = 1 / 1; // "/"\n}',
358+
expect: prompt_multiline + prompt_multiline + 'undefined\n' + prompt_unix },
359+
360+
{ client: client_unix, send: '(function() {\nreturn /foo/ / /bar/;\n}())',
361+
expect: prompt_multiline + prompt_multiline + 'NaN\n' + prompt_unix },
362+
363+
{ client: client_unix, send: '(function() {\nif (false) {} /bar"/;\n}())',
364+
expect: prompt_multiline + prompt_multiline + 'undefined\n' + prompt_unix }
355365
]);
356366
}
357367

0 commit comments

Comments
 (0)