mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-31 01:34:16 +02:00
- all decl tokens are given an accurate starting position - key grammar productions return token positions to facilitate the above - helpers for standardized parse error generation - replaced annoying pattern-matching type argument restrictions - moving away from dumping raw decl tokens in error messages
5 lines
126 B
Systemverilog
5 lines
126 B
Systemverilog
// pattern: const_const\.sv:3:11: Parse error: duplicate const modifier
|
|
module top;
|
|
const const logic x = 1'b1;
|
|
endmodule
|