Skip to content

Commit

Permalink
more stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
pokey committed Oct 10, 2023
1 parent 08fe4e8 commit 97e6756
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/cursorless-engine/src/api/CursorlessEngineApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export interface CursorlessEngine {
storedTargets: StoredTargetMap;
hatTokenMap: HatTokenMap;
snippets: Snippets;
spokenFormsJsonPath: string;
injectIde: (ide: IDE | undefined) => void;
runIntegrationTests: () => Promise<void>;
}
Expand Down
1 change: 1 addition & 0 deletions packages/cursorless-engine/src/cursorlessEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ export function createCursorlessEngine(
storedTargets,
hatTokenMap,
snippets,
spokenFormsJsonPath: talonSpokenForms.spokenFormsPath,
injectIde,
runIntegrationTests: () =>
runIntegrationTests(treeSitter, languageDefinitions),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ interface TalonSpokenFormsPayload {
export class TalonSpokenFormsJsonReader implements TalonSpokenForms {
private disposer = new Disposer();
private notifier = new Notifier();
private spokenFormsPath;
public readonly spokenFormsPath;

constructor(private fileSystem: FileSystem) {
const cursorlessDir = isTesting()
Expand Down

0 comments on commit 97e6756

Please sign in to comment.