@@ -6058,23 +6058,23 @@ pm_compile_node(rb_iseq_t *iseq, const pm_node_t *node, LINK_ANCHOR *const ret,
6058
6058
// def foo(a, (b, *c, d), e = 1, *f, g, (h, *i, j), k:, l: 1, **m, &n)
6059
6059
// ^^^^^^^^^^
6060
6060
case PM_MULTI_TARGET_NODE : {
6061
- required_multis_hidden_index = local_index ;
6062
- local = rb_make_temporary_id (local_index );
6063
- local_table_for_iseq -> ids [local_index ] = local ;
6064
- break ;
6061
+ required_multis_hidden_index = local_index ;
6062
+ local = rb_make_temporary_id (local_index );
6063
+ local_table_for_iseq -> ids [local_index ] = local ;
6064
+ break ;
6065
6065
}
6066
6066
// def foo(a, (b, *c, d), e = 1, *f, g, (h, *i, j), k:, l: 1, **m, &n)
6067
6067
// ^
6068
6068
case PM_REQUIRED_PARAMETER_NODE : {
6069
- pm_required_parameter_node_t * param = (pm_required_parameter_node_t * )required ;
6069
+ pm_required_parameter_node_t * param = (pm_required_parameter_node_t * )required ;
6070
6070
6071
- if (!PM_NODE_FLAG_P (required , PM_PARAMETER_FLAGS_REPEATED_PARAMETER )) {
6072
- pm_insert_local_index (param -> name , local_index , index_lookup_table , local_table_for_iseq , scope_node );
6073
- }
6074
- break ;
6071
+ if (!PM_NODE_FLAG_P (required , PM_PARAMETER_FLAGS_REPEATED_PARAMETER )) {
6072
+ pm_insert_local_index (param -> name , local_index , index_lookup_table , local_table_for_iseq , scope_node );
6073
+ }
6074
+ break ;
6075
6075
}
6076
6076
default : {
6077
- rb_bug ("Unsupported node in requireds in parameters %s" , pm_node_type_to_str (PM_NODE_TYPE (node )));
6077
+ rb_bug ("Unsupported node in requireds in parameters %s" , pm_node_type_to_str (PM_NODE_TYPE (node )));
6078
6078
}
6079
6079
}
6080
6080
}
0 commit comments