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