From 0bc2f0dd9849f04cbacbbb59a80d6e82b5672fbb Mon Sep 17 00:00:00 2001 From: tonythetender Date: Mon, 1 Dec 2025 06:55:29 -0500 Subject: [PATCH] Wire up new tests and flags --- src/lsp/mod.zig | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/lsp/mod.zig b/src/lsp/mod.zig index 0815a72009..e863f90cd0 100644 --- a/src/lsp/mod.zig +++ b/src/lsp/mod.zig @@ -4,8 +4,8 @@ pub const transport = @import("transport.zig"); pub const server = @import("server.zig"); /// Convenience wrapper to launch the server using stdin/stdout from other modules. -pub fn runWithStdIo(allocator: std.mem.Allocator, debug_transport: bool) !void { - try server.runWithStdIo(allocator, debug_transport); +pub fn runWithStdIo(allocator: std.mem.Allocator, debug: server.DebugOptions) !void { + try server.runWithStdIo(allocator, debug); } test "lsp tests" { @@ -13,4 +13,5 @@ test "lsp tests" { std.testing.refAllDecls(@import("test/server_test.zig")); std.testing.refAllDecls(@import("test/transport_test.zig")); std.testing.refAllDecls(@import("test/document_store_test.zig")); + std.testing.refAllDecls(@import("test/syntax_test.zig")); }