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/parse.zig | |
parent | 22f24043755ed320eff8a121aa1b80ede3b3a37f (diff) | |
download | huginn-392f0c4be0d4c034a4b161337f8f3c5fbf46358a.tar.gz |
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; |