From bdbfea0737e25e5af3d2423b889589667e50d070 Mon Sep 17 00:00:00 2001 From: Alexandros Naskos Date: Tue, 23 Jun 2020 12:16:37 +0300 Subject: [PATCH] removed accidental leftover code --- src/analysis.zig | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/analysis.zig b/src/analysis.zig index 2e836e5..2291646 100644 --- a/src/analysis.zig +++ b/src/analysis.zig @@ -582,8 +582,6 @@ pub fn resolveTypeOfNodeInternal( if (try lookupSymbolGlobal(store, arena, handle, handle.tree.getNodeSource(node), handle.tree.token_locs[node.firstToken()].start)) |child| { switch (child.decl.*) { .ast_node => |n| if (n == node) return null, - // @TODO - .param_decl => |p_decl| {}, else => {}, } return try child.resolveType(store, arena, bound_type_params);