Skip to content

Commit

Permalink
Adopt prism CallNode#name changes
Browse files Browse the repository at this point in the history
  • Loading branch information
eregon authored and kddnewton committed Oct 2, 2023
1 parent 87dad06 commit fd984ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prism_compile.c
Expand Up @@ -986,7 +986,7 @@ pm_compile_node(rb_iseq_t *iseq, const pm_node_t *node, LINK_ANCHOR *const ret,
case PM_CALL_NODE: {
pm_call_node_t *call_node = (pm_call_node_t *) node;

ID method_id = parse_string_symbol(&call_node->name);
ID method_id = pm_constant_id_lookup(compile_context, call_node->name);
int flags = 0;
int orig_argc = 0;

Expand Down

0 comments on commit fd984ac

Please sign in to comment.