Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/prism.c
Original file line number Diff line number Diff line change
Expand Up @@ -12533,7 +12533,10 @@ pm_node_unreference_each(const pm_node_t *node, void *data) {
);
}
parser->current_block_exits->size--;
return false;

/* Note returning true here because these nodes could have
* arguments that are themselves block exits. */
return true;
}

index++;
Expand Down