You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the library seems cannot parse exponent numbers correctly, like 1e5, 1.2e-4, 0.8e+5.
and, you might need to consider situations when the exponent num is incomplete, for example, for 1.2e5, when the exponent 5 is missing, there will be only 1.2e.
Currently, the library seems cannot parse exponent numbers correctly, like
1e5
,1.2e-4
,0.8e+5
.and, you might need to consider situations when the exponent num is incomplete, for example, for
1.2e5
, when the exponent 5 is missing, there will be only1.2e
.Test code(
tokenize.test.ts
):Error:
Relative code:
function parseExponent(context: ParseContext)
.The text was updated successfully, but these errors were encountered: