From 392f0c4be0d4c034a4b161337f8f3c5fbf46358a Mon Sep 17 00:00:00 2001 From: Mathias Magnusson Date: Mon, 4 Aug 2025 23:12:39 +0200 Subject: add a little test runner --- src/compile.zig | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/compile.zig') 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); -- cgit v1.2.3