diff options
Diffstat (limited to 'src/parse.zig')
-rw-r--r-- | src/parse.zig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/parse.zig b/src/parse.zig index 4adeffb..47356e8 100644 --- a/src/parse.zig +++ b/src/parse.zig @@ -1,8 +1,7 @@ const std = @import("std"); const Allocator = std.mem.Allocator; -const root = @import("root"); -const Lexer = root.Lexer; +const Lexer = @import("Lexer.zig"); const Token = Lexer.Token; const Location = Lexer.Location; |