[PRISM] Match CRuby line semantics for evstr

This commit is contained in:
Kevin Newton 2024-05-20 10:44:13 -04:00
Родитель 1ba93c2c4d
Коммит ca5b458044
3 изменённых файлов: 18 добавлений и 7 удалений

Просмотреть файл

@ -15460,6 +15460,13 @@ parse_string_part(pm_parser_t *parser) {
expect1(parser, PM_TOKEN_EMBEXPR_END, PM_ERR_EMBEXPR_END);
pm_token_t closing = parser->previous;
// If this set of embedded statements only contains a single
// statement, then Ruby does not consider it as a possible statement
// that could emit a line event.
if (statements != NULL && statements->body.size == 1) {
pm_node_flag_unset(statements->body.nodes[0], PM_NODE_FLAG_NEWLINE);
}
return (pm_node_t *) pm_embedded_statements_node_create(parser, &opening, statements, &closing);
}

Просмотреть файл

@ -570,6 +570,7 @@ pm_interpolated_node_compile(rb_iseq_t *iseq, const pm_node_list_t *parts, const
if (parts_size > 0) {
VALUE current_string = Qnil;
pm_line_column_t current_location = *node_location;
for (size_t index = 0; index < parts_size; index++) {
const pm_node_t *part = parts->nodes[index];
@ -590,6 +591,7 @@ pm_interpolated_node_compile(rb_iseq_t *iseq, const pm_node_list_t *parts, const
}
else {
current_string = string_value;
if (index != 0) current_location = PM_NODE_END_LINE_COLUMN(scope_node->parser, part);
}
}
else {
@ -616,6 +618,7 @@ pm_interpolated_node_compile(rb_iseq_t *iseq, const pm_node_list_t *parts, const
}
else {
current_string = string_value;
current_location = PM_NODE_START_LINE_COLUMN(scope_node->parser, part);
}
}
else {
@ -640,11 +643,13 @@ pm_interpolated_node_compile(rb_iseq_t *iseq, const pm_node_list_t *parts, const
current_string = rb_enc_str_new(NULL, 0, encoding);
}
PUSH_INSN1(ret, *node_location, putobject, rb_fstring(current_string));
PUSH_INSN1(ret, current_location, putobject, rb_fstring(current_string));
PM_COMPILE_NOT_POPPED(part);
PUSH_INSN(ret, *node_location, dup);
PUSH_INSN1(ret, *node_location, objtostring, new_callinfo(iseq, idTo_s, 0, VM_CALL_FCALL | VM_CALL_ARGS_SIMPLE , NULL, FALSE));
PUSH_INSN(ret, *node_location, anytostring);
const pm_line_column_t current_location = PM_NODE_START_LINE_COLUMN(scope_node->parser, part);
PUSH_INSN(ret, current_location, dup);
PUSH_INSN1(ret, current_location, objtostring, new_callinfo(iseq, idTo_s, 0, VM_CALL_FCALL | VM_CALL_ARGS_SIMPLE, NULL, FALSE));
PUSH_INSN(ret, current_location, anytostring);
current_string = Qnil;
stack_size += 2;
@ -656,10 +661,10 @@ pm_interpolated_node_compile(rb_iseq_t *iseq, const pm_node_list_t *parts, const
current_string = rb_fstring(current_string);
if (stack_size == 0 && interpolated) {
PUSH_INSN1(ret, *node_location, putstring, current_string);
PUSH_INSN1(ret, current_location, putstring, current_string);
}
else {
PUSH_INSN1(ret, *node_location, putobject, current_string);
PUSH_INSN1(ret, current_location, putobject, current_string);
}
current_string = Qnil;

Просмотреть файл

@ -1 +0,0 @@
exclude(:test_eval, "respect eval coverage setting")