Skip to content
Merged
Show file tree
Hide file tree
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
26 changes: 26 additions & 0 deletions src/prism.c
Original file line number Diff line number Diff line change
Expand Up @@ -21430,6 +21430,32 @@ parse_expression_infix(pm_parser_t *parser, pm_node_t *node, pm_binding_power_t
return (pm_node_t *) pm_call_node_shorthand_create(parser, node, &operator, &arguments);
}

switch (PM_NODE_TYPE(node)) {
case PM_RESCUE_MODIFIER_NODE: {
pm_rescue_modifier_node_t *cast = (pm_rescue_modifier_node_t *) node;
if (PM_NODE_TYPE_P(cast->rescue_expression, PM_MATCH_PREDICATE_NODE) || PM_NODE_TYPE_P(cast->rescue_expression, PM_MATCH_REQUIRED_NODE)) {
PM_PARSER_ERR_TOKEN_FORMAT(parser, operator, PM_ERR_EXPECT_EOL_AFTER_STATEMENT, pm_token_type_human(operator.type));
}
break;
}
case PM_AND_NODE: {
pm_and_node_t *cast = (pm_and_node_t *) node;
if (PM_NODE_TYPE_P(cast->right, PM_MATCH_PREDICATE_NODE) || PM_NODE_TYPE_P(cast->right, PM_MATCH_REQUIRED_NODE)) {
PM_PARSER_ERR_TOKEN_FORMAT(parser, operator, PM_ERR_EXPECT_EOL_AFTER_STATEMENT, pm_token_type_human(operator.type));
}
break;
}
case PM_OR_NODE: {
pm_or_node_t *cast = (pm_or_node_t *) node;
if (PM_NODE_TYPE_P(cast->right, PM_MATCH_PREDICATE_NODE) || PM_NODE_TYPE_P(cast->right, PM_MATCH_REQUIRED_NODE)) {
PM_PARSER_ERR_TOKEN_FORMAT(parser, operator, PM_ERR_EXPECT_EOL_AFTER_STATEMENT, pm_token_type_human(operator.type));
}
break;
}
default:
break;
}

pm_token_t message;

switch (parser->current.type) {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
1 and 2 in 3.inspect
^ unexpected '.', expecting end-of-input

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'a' or 1 in 1.upcase
^ unexpected '.', expecting end-of-input

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'a' rescue 2 in 3.upcase
^ unexpected '.', expecting end-of-input

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
1 and 2 => 3.inspect
^ unexpected '.', expecting end-of-input

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
1 or 2 => 3.inspect
^ unexpected '.', expecting end-of-input

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
1 rescue 2 => 3.inspect
^ unexpected '.', expecting end-of-input