sv-parser-pp 0.13.5

Helper crate of sv-parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//                                  Leading whitespace on 4 lines.
//  initial \                       Space before line continuation.
//    begin\                        No space before line continuation.
//      $display(); // comment \    Continuation at end of comment.
//    end
// NOTE: Trailing whitespace on lines ending `initial ` and `$display(); `.

`define A \
  initial \
    begin\
      $display(); // comment \
    end

module M;
`A
endmodule