Open hankhsu1996 opened 2 years ago
In the following logic declaration:
logic [$clog2(MY_PARAM)-1:0] my_var;
The $clog2 should be in scope support.function.systemverilog but it's actually tokenized into $ and clog2 and results in wrong colorization.
$clog2
support.function.systemverilog
$
clog2
Ack. The whole syntax json needs a re-look. So pull requests welcome. I will also take a look.
In the following logic declaration:
The
$clog2
should be in scopesupport.function.systemverilog
but it's actually tokenized into$
andclog2
and results in wrong colorization.