File tree Expand file tree Collapse file tree 4 files changed +8
-0
lines changed Expand file tree Collapse file tree 4 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ import {
30
30
} from "./ScopeVisualizerCommandApi" ;
31
31
32
32
export const DONT_SHOW_TALON_UPDATE_MESSAGE_KEY = "dontShowUpdateTalonMessage" ;
33
+
33
34
export class ScopeTreeProvider implements TreeDataProvider < MyTreeItem > {
34
35
private visibleDisposable : Disposer | undefined ;
35
36
private treeView : TreeView < MyTreeItem > ;
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ export function constructTestHelpers(
28
28
hatTokenMap : HatTokenMap ,
29
29
vscodeIDE : VscodeIDE ,
30
30
normalizedIde : NormalizedIDE ,
31
+ spokenFormsJsonPath : string ,
31
32
injectIde : ( ide : IDE ) => void ,
32
33
runIntegrationTests : ( ) => Promise < void > ,
33
34
) : TestHelpers | undefined {
@@ -61,6 +62,8 @@ export function constructTestHelpers(
61
62
) ;
62
63
} ,
63
64
65
+ spokenFormsJsonPath,
66
+
64
67
setStoredTarget (
65
68
editor : vscode . TextEditor ,
66
69
key : StoredTargetKey ,
Original file line number Diff line number Diff line change @@ -83,6 +83,7 @@ export async function activate(
83
83
scopeProvider,
84
84
snippets,
85
85
injectIde,
86
+ spokenFormsJsonPath,
86
87
runIntegrationTests,
87
88
customSpokenFormGenerator,
88
89
} = createCursorlessEngine (
@@ -125,6 +126,7 @@ export async function activate(
125
126
hatTokenMap ,
126
127
vscodeIDE ,
127
128
normalizedIde as NormalizedIDE ,
129
+ spokenFormsJsonPath ,
128
130
injectIde ,
129
131
runIntegrationTests ,
130
132
)
Original file line number Diff line number Diff line change @@ -44,6 +44,8 @@ export interface TestHelpers {
44
44
45
45
runIntegrationTests ( ) : Promise < void > ;
46
46
47
+ spokenFormsJsonPath : string ;
48
+
47
49
/**
48
50
* A thin wrapper around the VSCode API that allows us to mock it for testing.
49
51
*/
You can’t perform that action at this time.
0 commit comments