Open philipaxer opened 5 years ago
It seems that macros parser is not correctly implemented.
The following
`define BLA2(x,y) x [1:0] `BLA2(logic,test) x;
evaluates to:
logic [1:0IntellijIdeaRulezzz ] x;
Additionally in the following example, BLA2 is not recognized in the third line.
`define BLA2_X(x,y) x+y:y `define BLA2(x,y) x*y:y logic [ `BLA2(X, Y) ] level;
It seems that macros parser is not correctly implemented.
The following
evaluates to:
Additionally in the following example, BLA2 is not recognized in the third line.