Skip to content

Commit 376a702

Browse files
committed
vscode-extension: expose editorSDKPath to other extensions
1 parent 1b7ba48 commit 376a702

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

vscode-extension/src/main/ts/extension.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -560,6 +560,15 @@ export function activate(context: vscode.ExtensionContext) {
560560
get frameworkSDKPath(): string | null {
561561
return frameworkSDKHome;
562562
},
563+
564+
/**
565+
* The absolute file path of the currently selected editor SDK.
566+
* May be null or undefined if no SDK is selected or the currently
567+
* selected SDK is invalid.
568+
*/
569+
get editorSDKPath(): string | null {
570+
return editorSDKHome;
571+
},
563572
};
564573
}
565574

0 commit comments

Comments
 (0)