From d4871914ea89d185f3ca87bc9706d061eb88299c Mon Sep 17 00:00:00 2001 From: Alexandros Naskos Date: Sat, 23 May 2020 00:05:16 +0300 Subject: [PATCH] Removed debug traces --- src/main.zig | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main.zig b/src/main.zig index 7375a08..643e7cd 100644 --- a/src/main.zig +++ b/src/main.zig @@ -190,8 +190,6 @@ fn nodeToCompletion(list: *std.ArrayList(types.CompletionItem), analysis_ctx: *D else null; - std.debug.warn("{}\n", .{node.id}); - switch (node.id) { .ErrorSetDecl, .Root, .ContainerDecl => { try containerToCompletion(list, analysis_ctx, node, config); @@ -413,7 +411,6 @@ fn completeGlobal(id: i64, pos_index: usize, handle: *DocumentStore.Handle, conf try analysis.declsFromIndex(&decl_nodes, analysis_ctx.tree, pos_index); for (decl_nodes.items) |decl_ptr| { var decl = decl_ptr.*; - std.debug.warn("Global completion: {}\n", .{decl}); try nodeToCompletion(&completions, &analysis_ctx, decl_ptr, config); }