fix: stringify numeric separated literals with a leading zero #15
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "main"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
More examples of invalid numbers:
https://github.com/microsoft/TypeScript/issues/39563
For this grammar
I now get
notice
"0_2"Before,
0_2:10produced a syntax error.This would also go wrong for other strings (say
1a). Attached patch solves the issue in a somewhat different way.Pull request closed