diff options
author | Mathias Magnusson <mathias@magnusson.space> | 2025-08-04 23:12:39 +0200 |
---|---|---|
committer | Mathias Magnusson <mathias@magnusson.space> | 2025-08-04 23:12:39 +0200 |
commit | 392f0c4be0d4c034a4b161337f8f3c5fbf46358a (patch) | |
tree | 493cef6315b016e8ec7f9be051be7bb904e16add /src/compile.zig | |
parent | 22f24043755ed320eff8a121aa1b80ede3b3a37f (diff) | |
download | huginn-main.tar.gz |
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); |