conversions are applied per-file

- NestTF refactored to cover all package items
- fixed issue where type traverse skipped typedefs
This commit is contained in:
Zachary Snow
2019-04-23 18:51:39 -04:00
parent da38776d73
commit 33dc4b3f88
28 changed files with 169 additions and 141 deletions
+2
View File
@@ -9,7 +9,9 @@ function baz;
input [2:0] n;
baz = n * 2;
endfunction
localparam PARAM = 37;
module top;
initial foo();
initial $display("bar(0) = %d", bar(0));
initial $display("PARAM = %d", PARAM);
endmodule
+2
View File
@@ -10,6 +10,8 @@ module top;
input [2:0] n;
baz = n * 2;
endfunction
localparam PARAM = 37;
initial foo();
initial $display("bar(0) = %d", bar(0));
initial $display("PARAM = %d", PARAM);
endmodule