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
given the following piece of code
float a = 1.0, b = 2.0;
glsl-parser currently produce decllist ( ident, expr (literal), ident, expr(literal) ).
decllist
ident
expr
literal
would it make more sense to have expr nested under ident so decllist might look like decllist ( ident(expr(literal)), ident(expr(literal)) )
instead?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
given the following piece of code
glsl-parser currently produce
decllist
(ident
,expr
(literal
),ident
,expr
(literal
) ).would it make more sense to have
expr
nested underident
sodecllist
might look likedecllist
(ident
(expr
(literal
)),ident
(expr
(literal
)) )instead?
The text was updated successfully, but these errors were encountered: