fix(lib/vscode): add getAppRoot to VariableResolverService

Not sure if it's used because it can return undefined, but it's
there now!
This commit is contained in:
Joe Previte
2021-03-11 15:54:25 -07:00
parent dc08bc68c6
commit 34189e4d49
2 changed files with 8 additions and 1 deletions

View File

@@ -350,6 +350,13 @@ class VariableResolverService extends AbstractVariableResolverService {
getConfigurationValue: (_: URI, section: string): string | undefined => {
return args.resolvedVariables[`config:${section}`];
},
getAppRoot: (): string | undefined => {
/*
NOTE@coder: not sure where we could get this from. This is new.
@jsjoeio 3/11/21
*/
return undefined
},
getExecPath: (): string | undefined => {
// Assuming that resolverEnv is just for use in the resolver and not for
// the terminal itself.