(path string, line int)
| 65 | } |
| 66 | |
| 67 | func (b BoundaryIndex) Contains(path string, line int) bool { |
| 68 | _, ok := b.commandAt(path, line) |
| 69 | return ok |
| 70 | } |
| 71 | |
| 72 | func (b BoundaryIndex) commandAt(path string, line int) (string, bool) { |
| 73 | if b.Lines == nil { |