diff options
Diffstat (limited to 'src/compile.zig')
-rw-r--r-- | src/compile.zig | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/compile.zig b/src/compile.zig index 69ac270..1b890b6 100644 --- a/src/compile.zig +++ b/src/compile.zig @@ -1,9 +1,9 @@ const std = @import("std"); const Allocator = std.mem.Allocator; -const root = @import("root"); -const Token = root.Lexer.Token; -const parse = root.parse; -const Location = root.Lexer.Location; +const Lexer = @import("Lexer.zig"); +const Token = Lexer.Token; +const parse = @import("parse.zig"); +const Location = Lexer.Location; const log = std.log.scoped(.compile); |