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
Describe the bug The formatter not working properly with unique case or priority case statements.
To Reproduce Test case
module test(); logic [7:0] var1; logic [7:0] value; always_comb begin unique case (var1) 1: begin value= 1; end 2: begin value = 2; end default: begin value = 0; end endcase end endmodule
Actual output
the expect output is the same as the test case
Where the indent is try to align the case, and indent all the code after it to incorrect place
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
The formatter not working properly with unique case or priority case statements.
To Reproduce
Test case
Actual output
the expect output is the same as the test case
Where the indent is try to align the case, and indent all the code after it to incorrect place
The text was updated successfully, but these errors were encountered: