NewLocation implements the Source interface method.
(line, col int)
| 142 | |
| 143 | // NewLocation implements the Source interface method. |
| 144 | func (s *sourceImpl) NewLocation(line, col int) Location { |
| 145 | return NewLocation(line, col) |
| 146 | } |
| 147 | |
| 148 | // OffsetLocation implements the Source interface method. |
| 149 | func (s *sourceImpl) OffsetLocation(offset int32) (Location, bool) { |
nothing calls this directly
no test coverage detected