tree-sitter / tree-sitter-verilog

SystemVerilog grammar for tree-sitter
MIT License
93 stars 36 forks source link

fix blocking assignment #36

Open drom opened 5 years ago

drom commented 5 years ago

Fail to assume new to be an identifier, not the class_new

module class_tb ();
    initial begin
        inst = new;
    end
endmodule