(id int64)
| 178 | } |
| 179 | |
| 180 | func (p *parserHelper) deleteID(id int64) { |
| 181 | p.sourceInfo.ClearOffsetRange(id) |
| 182 | if id == p.nextID-1 { |
| 183 | p.nextID-- |
| 184 | } |
| 185 | } |
| 186 | |
| 187 | func (p *parserHelper) getLocation(id int64) common.Location { |
| 188 | return p.sourceInfo.GetStartLocation(id) |
no test coverage detected