1-based line number within source.
()
| 18 | type Location interface { |
| 19 | Line() int // 1-based line number within source. |
| 20 | Column() int // 0-based column number within source. |
| 21 | } |
| 22 | |
| 23 | // SourceLocation helper type to manually construct a location. |
no outgoing calls