removed accidental leftover code

This commit is contained in:
Alexandros Naskos 2020-06-23 12:16:37 +03:00
parent c8af53ef7a
commit bdbfea0737

View File

@ -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| { if (try lookupSymbolGlobal(store, arena, handle, handle.tree.getNodeSource(node), handle.tree.token_locs[node.firstToken()].start)) |child| {
switch (child.decl.*) { switch (child.decl.*) {
.ast_node => |n| if (n == node) return null, .ast_node => |n| if (n == node) return null,
// @TODO
.param_decl => |p_decl| {},
else => {}, else => {},
} }
return try child.resolveType(store, arena, bound_type_params); return try child.resolveType(store, arena, bound_type_params);