-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Backport {Uint,Int,Fixed,Ufixed}Keyword
from DSL v2 to v0/v1
#662
Backport {Uint,Int,Fixed,Ufixed}Keyword
from DSL v2 to v0/v1
#662
Conversation
|
c986ba8
to
a92a38c
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Left one question/concern.
Now that integer type scanner names all end with "Keyword", we can use the same uniform logic.
a92a38c
to
12348cf
Compare
{Uint,Int,Fixed,Ufixed}Keyword
from DSL v2 to v0/v1
Part of #652
Helps with #650
These make more sense, given that these are the names used in the official grammar (fixed-bytes, signed-integer-type, unsigned-integer-type) and "XXXKeyword" name implies a single atom and not a more complex rule (e.g. looking at the
fixed
definition...).I think we should revert the accidental name change in v2 and later decide if we want to change these.
EDIT: This now does the opposite and backports the name change to v0/v1.