chore(lib/vscode): clean up comments

This commit is contained in:
Akash Satheesan
2021-04-16 00:39:02 +05:30
parent bdf555a06e
commit 578b2de131
2 changed files with 13 additions and 10 deletions

View File

@@ -192,12 +192,12 @@ export abstract class AbstractNativeEnvironmentService implements INativeEnviron
/**
* NOTE@coder: add extraExtensionPaths and extraBuiltinExtensionPaths
* Code location changed after 1.54 (was earlier directly in NativeEnvironmentService).
*/
@memoize
get extraExtensionPaths(): string[] {
return (this._args['extra-extensions-dir'] || []).map((p) => <string>parsePathArg(p, process));
}
@memoize
get extraBuiltinExtensionPaths(): string[] {
return (this._args['extra-builtin-extensions-dir'] || []).map((p) => <string>parsePathArg(p, process));