Position of first character belonging to the node.
()
| 12 | type Node interface { |
| 13 | Pos() int // Position of first character belonging to the node. |
| 14 | End() int // Position of first character immediately after the node. |
| 15 | } |
| 16 | |
| 17 | type Loc struct { |
no outgoing calls