@lvce-editor/extension-host-worker 5.10.0 → 5.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -914,6 +914,14 @@ const getScripts = async protocol => {
|
|
|
914
914
|
throw new VError(error, 'Failed to execute debug provider');
|
|
915
915
|
}
|
|
916
916
|
};
|
|
917
|
+
const getPausedStatus = async protocol => {
|
|
918
|
+
try {
|
|
919
|
+
const provider = getDebugProvider(protocol);
|
|
920
|
+
return await provider.getStatus();
|
|
921
|
+
} catch (error) {
|
|
922
|
+
throw new VError(error, 'Failed to execute debug provider');
|
|
923
|
+
}
|
|
924
|
+
};
|
|
917
925
|
const stepInto = async protocol => {
|
|
918
926
|
try {
|
|
919
927
|
const provider = getDebugProvider(protocol);
|
|
@@ -5706,6 +5714,7 @@ const commandMap = {
|
|
|
5706
5714
|
'ExtensionHostDebug.getCallStack': getCallStack,
|
|
5707
5715
|
'ExtensionHostDebug.getScopeChain': getScopeChain,
|
|
5708
5716
|
'ExtensionHostDebug.getScripts': getScripts,
|
|
5717
|
+
'ExtensionHostDebug.getPausedStatus': getPausedStatus,
|
|
5709
5718
|
'ExtensionHostRename.executeprepareRenameProvider': executeprepareRenameProvider,
|
|
5710
5719
|
'ExtensionHostRename.executeRenameProvider': executeRenameProvider,
|
|
5711
5720
|
'ExtensionHostWebView.create': createWebView,
|