From e5e079e70f8b07697f7cc3f64736f993755500cb Mon Sep 17 00:00:00 2001 From: Kevin Newton Date: Thu, 23 May 2024 14:37:54 -0400 Subject: [PATCH] [ruby/prism] Only accept command call when specified for constant path https://github.com/ruby/prism/commit/0ae908b6ee --- prism/prism.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prism/prism.c b/prism/prism.c index 86a4aa90b0..5499ce4764 100644 --- a/prism/prism.c +++ b/prism/prism.c @@ -20714,7 +20714,7 @@ parse_expression_infix(pm_parser_t *parser, pm_node_t *node, pm_binding_power_t if ( (parser->current.type == PM_TOKEN_PARENTHESIS_LEFT) || - (token_begins_expression_p(parser->current.type) || match3(parser, PM_TOKEN_UAMPERSAND, PM_TOKEN_USTAR, PM_TOKEN_USTAR_STAR)) + (accepts_command_call && (token_begins_expression_p(parser->current.type) || match3(parser, PM_TOKEN_UAMPERSAND, PM_TOKEN_USTAR, PM_TOKEN_USTAR_STAR))) ) { // If we have a constant immediately following a '::' operator, then // this can either be a constant path or a method call, depending on