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
当使用unique case和priority case时,formatter会把缩进对齐case,而不是unique,并影响到后面其他行的缩进位置
测试和期望输出
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
实际formatter输出
可以看到,因为对其了case,导致后面的endmodule也受到了影响,缩进到了不正确的位置
The text was updated successfully, but these errors were encountered:
No branches or pull requests
当使用unique case和priority case时,formatter会把缩进对齐case,而不是unique,并影响到后面其他行的缩进位置
测试和期望输出
实际formatter输出
可以看到,因为对其了case,导致后面的endmodule也受到了影响,缩进到了不正确的位置
The text was updated successfully, but these errors were encountered: