This commit is contained in:
agra
2026-02-11 21:22:03 +02:00
parent 9d96f05d3b
commit 9a2501f662
5 changed files with 449 additions and 56 deletions

View File

@@ -893,7 +893,7 @@ pub const Server = struct {
const source = try self.allocator.dupeZ(u8, text);
const file_path = uriToFilePath(uri) orelse "";
var comp = sx.core.Compilation.init(self.allocator, self.io, file_path, source);
var comp = sx.core.Compilation.init(self.allocator, self.io, file_path, source, .{});
defer comp.deinit();
comp.parse() catch {