You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
verilog-pretty-declarations function does not work with next text:
parameter ABC = 1;
but works with next:
parameter integer ABC = 1;
Verilog 1995-2001 std. do not assume parameters to have a type.
Maybe keywords parameter/localparam should be in verilog-declaration-core-re, not in verilog-declaration-prefix-re or in separate regex construction parallel to current verilog-declaration-re?
One of possible solutions attached in a patch.
The text was updated successfully, but these errors were encountered:
Author Name: Vasil Dyadov
Original Redmine Issue: 585 from https://www.veripool.org
verilog-pretty-declarations function does not work with next text:
parameter ABC = 1;
but works with next:
parameter integer ABC = 1;
Verilog 1995-2001 std. do not assume parameters to have a type.
Maybe keywords parameter/localparam should be in verilog-declaration-core-re, not in verilog-declaration-prefix-re or in separate regex construction parallel to current verilog-declaration-re?
One of possible solutions attached in a patch.
The text was updated successfully, but these errors were encountered: