remove inspectValue and use inspect

Add override information to inspect
This commit is contained in:
Sandeep Somavarapu
2019-12-12 09:16:59 +01:00
parent 6bd03bf256
commit 2cbd162c66
27 changed files with 273 additions and 425 deletions

View File

@@ -204,10 +204,10 @@ export class ExtHostConfigProvider {
if (config) {
return {
key,
defaultValue: config.default,
globalValue: config.user,
workspaceValue: config.workspace,
workspaceFolderValue: config.workspaceFolder
defaultValue: config.defaultValue,
globalValue: config.userValue,
workspaceValue: config.workspaceValue,
workspaceFolderValue: config.workspaceFolderValue
};
}
return undefined;