Skip to content

Commit

Permalink
Mak call
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasArvidsson committed Jan 21, 2025
1 parent 859e900 commit 1038c2b
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions packages/cursorless-engine/src/cursorlessEngine.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {
import {
Command,
CommandServerApi,
Direction,
Expand Down Expand Up @@ -89,8 +89,14 @@ export async function createCursorlessEngine({
}: EngineProps): Promise<CursorlessEngine> {
injectIde(ide);

const test = new Testing();
const test: ScopeHandler = new Testing();
console.log(test);
test.generateScopes(
null as unknown as TextEditor,
new Position(0, 0),
"forward",
{},
);

const debug = new Debug(ide);
const rangeUpdater = new RangeUpdater();
Expand Down

0 comments on commit 1038c2b

Please sign in to comment.