fix: "e1" literal read as a number exponent
This commit is contained in:
parent
058d20b27f
commit
a329f615cf
@ -289,9 +289,8 @@ public class Parsing {
|
||||
}
|
||||
}
|
||||
|
||||
if (src.is(i + n, 'e') || src.is(i + n, 'E')) {
|
||||
if (parsedAny && src.is(i + n, 'e') || src.is(i + n, 'E')) {
|
||||
n++;
|
||||
parsedAny = true;
|
||||
boolean expNegative = false;
|
||||
boolean parsedE = false;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user