Weirdness in numbers with size suffixes. #8
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
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?
The current lexer grammar will parse
5:88
into two numbers:5:8
and8
. This is probably not how we want this to happen. Perhaps a size suffix should allow any number of digits and just be validated to only contain 8, 16, 32 or 64 after the value is converted.Additionally, it might be worth exploring if size suffix should go into the grammar instead of the lexer.