mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-10-31 03:32:29 +00:00 
			
		
		
		
	| Consider this SystemVerilog file:
    module top(...);
      input clk;
      input [7:0] data;
      input ack;
      always @(posedge clk)
        if (ack) begin
          assert(data != 8'h0a);
        end
    endmodule
Before this commit, the span for the assert was:
        if (ack) begin>
          assert(data != 8'h0a)<;
After this commit, the span for the assert is:
        if (ack) begin
          >assert(data != 8'h0a)<;
This helps editor integrations that only look at the beginning
of the span. | ||
|---|---|---|
| .. | ||
| .gitignore | ||
| const2ast.cc | ||
| Makefile.inc | ||
| preproc.cc | ||
| preproc.h | ||
| verilog_frontend.cc | ||
| verilog_frontend.h | ||
| verilog_lexer.l | ||
| verilog_parser.y | ||