Skip to content

Commit

Permalink
Fixed types resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
KyrylR committed Sep 9, 2024
1 parent 7e28f49 commit ca2d563
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/ExtendedCircomParser.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { Token } from "antlr4";
import * as antlr4 from "antlr4";

import { ParserErrorItem } from "./types";
import { CircomLexer, CircomParser } from "./generated";

import ErrorListener from "./errors/ErrorListener";
import { ParserErrorItem } from "./types";

export class ExtendedCircomParser extends CircomParser {
lexer: CircomLexer | null = null;
Expand Down
1 change: 1 addition & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from "./types/index";

0 comments on commit ca2d563

Please sign in to comment.