()
| 1422 | } |
| 1423 | |
| 1424 | dispose() { |
| 1425 | if (mockState.fileWatchers) { |
| 1426 | const index = mockState.fileWatchers.indexOf(this); |
| 1427 | if (index >= 0) { |
| 1428 | mockState.fileWatchers.splice(index, 1); |
| 1429 | } |
| 1430 | } |
| 1431 | this.onDidCreateEmitter.dispose(); |
| 1432 | this.onDidChangeEmitter.dispose(); |
| 1433 | this.onDidDeleteEmitter.dispose(); |
| 1434 | } |
| 1435 | } |
| 1436 | |
| 1437 | // ===== Workspace Folder ===== |