Removed debug traces
This commit is contained in:
parent
077a17e2f5
commit
d4871914ea
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user