Open
Description
Note: There is no error in evaluation.
Reproduction
Not OK
- When the string is
xxxx&xxx
const foo = "a&b
is parsed asvariable.language
and";
is parsed asstring
.
const foo = "a&b";
- When the string is
xxxx&
const foo = "a&";
This string matches the variable.language
regex possibly.
OK
const foo = "ab";