introduce new variable ${fileWorkspaceFolder}; fixes #84162

This commit is contained in:
Andre Weinand
2020-11-16 13:05:34 +01:00
parent b04e9c8f9d
commit 876d1f09cc
4 changed files with 59 additions and 46 deletions

View File

@@ -122,7 +122,7 @@ export class ExtHostDebugService extends ExtHostDebugServiceBase {
}
protected createVariableResolver(folders: vscode.WorkspaceFolder[], editorService: ExtHostDocumentsAndEditors, configurationService: ExtHostConfigProvider): AbstractVariableResolverService {
return new ExtHostVariableResolverService(folders, editorService, configurationService, process.env as env.IProcessEnvironment);
return new ExtHostVariableResolverService(folders, editorService, configurationService, process.env as env.IProcessEnvironment, this._workspaceService);
}
}