Skip to content

Commit 1038c2b

Browse files
Mak call
1 parent 859e900 commit 1038c2b

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

packages/cursorless-engine/src/cursorlessEngine.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type {
1+
import {
22
Command,
33
CommandServerApi,
44
Direction,
@@ -89,8 +89,14 @@ export async function createCursorlessEngine({
8989
}: EngineProps): Promise<CursorlessEngine> {
9090
injectIde(ide);
9191

92-
const test = new Testing();
92+
const test: ScopeHandler = new Testing();
9393
console.log(test);
94+
test.generateScopes(
95+
null as unknown as TextEditor,
96+
new Position(0, 0),
97+
"forward",
98+
{},
99+
);
94100

95101
const debug = new Debug(ide);
96102
const rangeUpdater = new RangeUpdater();

0 commit comments

Comments
 (0)