(id: string)
| 859 | } |
| 860 | |
| 861 | addWatchFile(id: string): void { |
| 862 | this._container.watchFiles.add(id) |
| 863 | if (this._container.watcher) |
| 864 | ensureWatchedFile( |
| 865 | this._container.watcher, |
| 866 | id, |
| 867 | this.environment.config.root, |
| 868 | ) |
| 869 | } |
| 870 | |
| 871 | getWatchFiles(): string[] { |
| 872 | return [...this._container.watchFiles] |
no test coverage detected