We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The grammar does not properly parse the readonly keyword
readonly
Grammar does not parse the readonly keyword properly leading to errors in the parse tree.
public static readonly int $x = 0;
Which leads to a tree with an error
(property_declaration (visibility_modifier) (static_modifier) type: (type_specifier (qualified_identifier (identifier))) (ERROR) (property_declarator name: (variable) value: (integer)))
I expect the readonly keyword to parse properly
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
The grammar does not properly parse the
readonly
keywordRequirements
To Reproduce
Grammar does not parse the
readonly
keyword properly leading to errors in the parse tree.Which leads to a tree with an error
Expected behavior
I expect the
readonly
keyword to parse properlyThe text was updated successfully, but these errors were encountered: