SourceLocation helper type to manually construct a location.
| 22 | |
| 23 | // SourceLocation helper type to manually construct a location. |
| 24 | type SourceLocation struct { |
| 25 | line int |
| 26 | column int |
| 27 | } |
| 28 | |
| 29 | var ( |
| 30 | // Location implements the SourceLocation interface. |
nothing calls this directly
no outgoing calls
no test coverage detected