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 this:
module top; wire a[1:0][1:0]; assign a[1][0] = 0; endmodule;
Run tree-sitter like this:
tree-sitter parse top.v
Got this error:
top.v 0 ms (ERROR [2, 10] - [2, 16])
However, a one-dimensional array works fine.
module top; wire a[1:0]; assign a[0] = 0; endmodule;
I guess the parser somehow failed to recognize [1][0] as constant_select1 here.
[1][0]
constant_select1
tree-sitter-verilog/grammar.js
Lines 4381 to 4388 in 9020313
The text was updated successfully, but these errors were encountered:
Did you manage how to solve it? i am about to start working with verilog and i have noticed that problem as well.
Sorry, something went wrong.
No branches or pull requests
Given this:
Run tree-sitter like this:
Got this error:
However, a one-dimensional array works fine.
I guess the parser somehow failed to recognize
[1][0]
asconstant_select1
here.tree-sitter-verilog/grammar.js
Lines 4381 to 4388 in 9020313
The text was updated successfully, but these errors were encountered: