mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 18:19:12 +01:00
restructure command variable resolving
This commit is contained in:
@@ -584,11 +584,11 @@ export class ExtHostVariableResolverService implements IConfigurationResolverSer
|
||||
return this._variableResolver.resolveAny(root ? root.uri : undefined, value);
|
||||
}
|
||||
|
||||
public resolveAny(root: IWorkspaceFolder, value: any): any {
|
||||
return this._variableResolver.resolveAny(root ? root.uri : undefined, value);
|
||||
public resolveAny<T>(root: IWorkspaceFolder, value: T, commandMapping?: IStringDictionary<string>): T {
|
||||
return this._variableResolver.resolveAny(root ? root.uri : undefined, value, commandMapping);
|
||||
}
|
||||
|
||||
resolveInteractiveVariables(configuration: any, interactiveVariablesMap: { [key: string]: string; }): TPromise<any, any> {
|
||||
throw new Error('Method not implemented.');
|
||||
public executeCommandVariables(configuration: any, variables: IStringDictionary<string>): TPromise<IStringDictionary<string>> {
|
||||
throw new Error('findAndExecuteCommandVariables not implemented.');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user