228
229
constructor(
231
>
private readonly _userHome: URI,
232
>
private readonly _pathToUri: PathToUri = URI.file,
233
>
@IFileService private readonly _fileService: IFileService,
234
>
@ILogService private readonly _logService: ILogService,
235
>
) {
236
>
super();
237
>
this._register({ dispose: () => this._disposeAllWatchers() });
238
>
this._register(this._fileService.onDidFilesChange(e => {
239
for (const watcher of this._watchers.values()) {
240
for (const uri of watcher.resourcesToWatch) {