@lvce-editor/test-worker 4.26.0 → 4.27.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.
- package/dist/api.d.ts +3 -1
- package/dist/testWorkerMain.js +11 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -195,7 +195,9 @@ declare const addWatchExpression: (expression: string) => Promise<void>;
|
|
|
195
195
|
declare const handleWatchValueChange: () => Promise<void>;
|
|
196
196
|
declare const acceptWatchExpressionEdit: () => Promise<void>;
|
|
197
197
|
declare const selectIndex$3: (index: number) => Promise<void>;
|
|
198
|
+
declare const setPauseOnExceptions: (value: number) => Promise<void>;
|
|
198
199
|
declare const handleRename: () => Promise<void>;
|
|
200
|
+
declare const handleSpace: () => Promise<void>;
|
|
199
201
|
declare const setValue$2: (value: string) => Promise<void>;
|
|
200
202
|
declare const setReplaceValue: (value: string) => Promise<void>;
|
|
201
203
|
declare const setExcludeValue: (value: string) => Promise<void>;
|
|
@@ -320,7 +322,7 @@ declare namespace QuickPick {
|
|
|
320
322
|
export { executeCommand, focusFirst$5 as focusFirst, focusIndex$1 as focusIndex, focusLast$5 as focusLast, focusNext$7 as focusNext, focusPrevious$5 as focusPrevious, handleClickAt$1 as handleClickAt, handleInput$1 as handleInput, open$3 as open, selectCurrentIndex$1 as selectCurrentIndex, selectIndex$2 as selectIndex, selectItem$1 as selectItem, setValue$1 as setValue };
|
|
321
323
|
}
|
|
322
324
|
declare namespace RunAndDebug {
|
|
323
|
-
export { acceptWatchExpressionEdit, addWatchExpression, handleClickSectionWatch, handleRename, handleWatchValueChange, selectIndex$3 as selectIndex };
|
|
325
|
+
export { acceptWatchExpressionEdit, addWatchExpression, handleClickSectionWatch, handleRename, handleSpace, handleWatchValueChange, selectIndex$3 as selectIndex, setPauseOnExceptions };
|
|
324
326
|
}
|
|
325
327
|
declare namespace Search {
|
|
326
328
|
export { clearSearchResults, collapseDetails, dismissItem, focusFirst$6 as focusFirst, focusIndex$2 as focusIndex, focusNext$8 as focusNext, focusNextPage, focusPrevious$6 as focusPrevious, focusPreviousPage, handleWheel$1 as handleWheel, openDetails, replaceAll, selectIndex$4 as selectIndex, setExcludeValue, setIncludeValue, setReplaceValue, setValue$2 as setValue, toggleMatchCase, toggleMatchWholeWord, togglePreserveCase, toggleReplace, toggleSearchDetails, toggleUseRegularExpression };
|
package/dist/testWorkerMain.js
CHANGED
|
@@ -2633,10 +2633,18 @@ const selectIndex$2 = async index => {
|
|
|
2633
2633
|
// @ts-ignore
|
|
2634
2634
|
await invoke('Run And Debug.selectIndex', index);
|
|
2635
2635
|
};
|
|
2636
|
+
const setPauseOnExceptions = async value => {
|
|
2637
|
+
// @ts-ignore
|
|
2638
|
+
await invoke('Run And Debug.setPauseOnExceptions', value);
|
|
2639
|
+
};
|
|
2636
2640
|
const handleRename = async () => {
|
|
2637
2641
|
// @ts-ignore
|
|
2638
2642
|
await invoke('Run And Debug.handleRename');
|
|
2639
2643
|
};
|
|
2644
|
+
const handleSpace = async () => {
|
|
2645
|
+
// @ts-ignore
|
|
2646
|
+
await invoke('Run And Debug.handleSpace');
|
|
2647
|
+
};
|
|
2640
2648
|
|
|
2641
2649
|
const TestFrameWorkComponentRunAndDebug = {
|
|
2642
2650
|
__proto__: null,
|
|
@@ -2644,8 +2652,10 @@ const TestFrameWorkComponentRunAndDebug = {
|
|
|
2644
2652
|
addWatchExpression,
|
|
2645
2653
|
handleClickSectionWatch,
|
|
2646
2654
|
handleRename,
|
|
2655
|
+
handleSpace,
|
|
2647
2656
|
handleWatchValueChange,
|
|
2648
|
-
selectIndex: selectIndex$2
|
|
2657
|
+
selectIndex: selectIndex$2,
|
|
2658
|
+
setPauseOnExceptions
|
|
2649
2659
|
};
|
|
2650
2660
|
|
|
2651
2661
|
const Script = 2;
|