()
| 62 | public readonly onOffsetsChanged = this.onOffsetsChangedEmitter.event; |
| 63 | |
| 64 | constructor() { |
| 65 | this.disposables.push(vs.workspace.onDidChangeTextDocument((e) => this.handleUpdate(e))); |
| 66 | } |
| 67 | |
| 68 | public trackDoc(document: vs.TextDocument, offsets: number[]) { |
| 69 | this.document = document; |
nothing calls this directly
no test coverage detected