even moar!!! infix/prefix changes are the only ones remaining

This commit is contained in:
SuperAuguste
2020-07-16 12:07:21 -04:00
parent 20f440b3a0
commit 1d7fed7f87
2 changed files with 6 additions and 6 deletions

View File

@@ -395,7 +395,7 @@ pub fn symbolReferences(
std.log.warn(.references, "Could not find param decl's function", .{});
return;
};
if (fn_node.body_node) |body| {
if (fn_node.getTrailer("body_node")) |body| {
try symbolReferencesInternal(arena, store, .{ .node = body, .handle = curr_handle }, decl_handle, encoding, context, handler);
}
},