aboutsummaryrefslogtreecommitdiffstats
path: root/prism/prism.c
diff options
context:
space:
mode:
authorTSUYUSATO Kitsune <make.just.on@gmail.com>2024-01-03 13:30:23 +0900
committergit <svn-admin@ruby-lang.org>2024-01-03 17:20:33 +0000
commita25329e0dab2a3ada395b1e4e0254a15cd498de2 (patch)
tree5fb67f8a41eb5505902ef4459634e2ba597b467d /prism/prism.c
parent3a3fcf56d0ab6b6887024ce7eba0676bae0ce13d (diff)
downloadruby-a25329e0dab2a3ada395b1e4e0254a15cd498de2.tar.gz
[ruby/prism] Fix parsing pinned local variable pattern for numbered parameter
Fix https://github.com/ruby/prism/pull/2094 The part of `parse_variable_call` for variables was split into a new function `parse_variable` and used it. https://github.com/ruby/prism/commit/4c5fd1a746
Diffstat (limited to 'prism/prism.c')
-rw-r--r--prism/prism.c124
1 files changed, 66 insertions, 58 deletions
diff --git a/prism/prism.c b/prism/prism.c
index 4aeef976c9..5cefb1a86a 100644
--- a/prism/prism.c
+++ b/prism/prism.c
@@ -12776,6 +12776,65 @@ outer_scope_using_numbered_parameters_p(pm_parser_t *parser) {
}
/**
+ * Parse an identifier into either a local variable read. If the local variable
+ * is not found, it returns NULL instead.
+ */
+static pm_local_variable_read_node_t *
+parse_variable(pm_parser_t *parser) {
+ int depth;
+ if ((depth = pm_parser_local_depth(parser, &parser->previous)) != -1) {
+ return pm_local_variable_read_node_create(parser, &parser->previous, (uint32_t) depth);
+ }
+
+ if (!parser->current_scope->closed && pm_token_is_numbered_parameter(parser->previous.start, parser->previous.end)) {
+ // Now that we know we have a numbered parameter, we need to check
+ // if it's allowed in this context. If it is, then we will create a
+ // local variable read. If it's not, then we'll create a normal call
+ // node but add an error.
+ if (parser->current_scope->explicit_params) {
+ pm_parser_err_previous(parser, PM_ERR_NUMBERED_PARAMETER_NOT_ALLOWED);
+ } else if (outer_scope_using_numbered_parameters_p(parser)) {
+ pm_parser_err_previous(parser, PM_ERR_NUMBERED_PARAMETER_OUTER_SCOPE);
+ } else {
+ // Indicate that this scope is using numbered params so that child
+ // scopes cannot.
+ uint8_t number = parser->previous.start[1];
+
+ // We subtract the value for the character '0' to get the actual
+ // integer value of the number (only _1 through _9 are valid)
+ uint8_t numbered_parameters = (uint8_t) (number - '0');
+ if (numbered_parameters > parser->current_scope->numbered_parameters) {
+ parser->current_scope->numbered_parameters = numbered_parameters;
+ pm_parser_numbered_parameters_set(parser, numbered_parameters);
+ }
+
+ // When you use a numbered parameter, it implies the existence
+ // of all of the locals that exist before it. For example,
+ // referencing _2 means that _1 must exist. Therefore here we
+ // loop through all of the possibilities and add them into the
+ // constant pool.
+ uint8_t current = '1';
+ uint8_t *value;
+
+ while (current < number) {
+ value = malloc(2);
+ value[0] = '_';
+ value[1] = current++;
+ pm_parser_local_add_owned(parser, value, 2);
+ }
+
+ // Now we can add the actual token that is being used. For
+ // this one we can add a shared version since it is directly
+ // referenced in the source.
+ pm_parser_local_add_token(parser, &parser->previous);
+ return pm_local_variable_read_node_create(parser, &parser->previous, 0);
+ }
+ }
+
+ return NULL;
+}
+
+/**
* Parse an identifier into either a local variable read or a call.
*/
static pm_node_t *
@@ -12783,56 +12842,8 @@ parse_variable_call(pm_parser_t *parser) {
pm_node_flags_t flags = 0;
if (!match1(parser, PM_TOKEN_PARENTHESIS_LEFT) && (parser->previous.end[-1] != '!') && (parser->previous.end[-1] != '?')) {
- int depth;
- if ((depth = pm_parser_local_depth(parser, &parser->previous)) != -1) {
- return (pm_node_t *) pm_local_variable_read_node_create(parser, &parser->previous, (uint32_t) depth);
- }
-
- if (!parser->current_scope->closed && pm_token_is_numbered_parameter(parser->previous.start, parser->previous.end)) {
- // Now that we know we have a numbered parameter, we need to check
- // if it's allowed in this context. If it is, then we will create a
- // local variable read. If it's not, then we'll create a normal call
- // node but add an error.
- if (parser->current_scope->explicit_params) {
- pm_parser_err_previous(parser, PM_ERR_NUMBERED_PARAMETER_NOT_ALLOWED);
- } else if (outer_scope_using_numbered_parameters_p(parser)) {
- pm_parser_err_previous(parser, PM_ERR_NUMBERED_PARAMETER_OUTER_SCOPE);
- } else {
- // Indicate that this scope is using numbered params so that child
- // scopes cannot.
- uint8_t number = parser->previous.start[1];
-
- // We subtract the value for the character '0' to get the actual
- // integer value of the number (only _1 through _9 are valid)
- uint8_t numbered_parameters = (uint8_t) (number - '0');
- if (numbered_parameters > parser->current_scope->numbered_parameters) {
- parser->current_scope->numbered_parameters = numbered_parameters;
- pm_parser_numbered_parameters_set(parser, numbered_parameters);
- }
-
- // When you use a numbered parameter, it implies the existence
- // of all of the locals that exist before it. For example,
- // referencing _2 means that _1 must exist. Therefore here we
- // loop through all of the possibilities and add them into the
- // constant pool.
- uint8_t current = '1';
- uint8_t *value;
-
- while (current < number) {
- value = malloc(2);
- value[0] = '_';
- value[1] = current++;
- pm_parser_local_add_owned(parser, value, 2);
- }
-
- // Now we can add the actual token that is being used. For
- // this one we can add a shared version since it is directly
- // referenced in the source.
- pm_parser_local_add_token(parser, &parser->previous);
- return (pm_node_t *) pm_local_variable_read_node_create(parser, &parser->previous, 0);
- }
- }
-
+ pm_local_variable_read_node_t *node = parse_variable(parser);
+ if (node != NULL) return (pm_node_t *) node;
flags |= PM_CALL_NODE_FLAGS_VARIABLE_CALL;
}
@@ -13391,15 +13402,12 @@ parse_pattern_primitive(pm_parser_t *parser, pm_diagnostic_id_t diag_id) {
// expression to determine if it's a variable or an expression.
switch (parser->current.type) {
case PM_TOKEN_IDENTIFIER: {
- int depth = pm_parser_local_depth(parser, &parser->current);
-
- if (depth == -1) {
- depth = 0;
- PM_PARSER_ERR_TOKEN_FORMAT(parser, parser->current, PM_ERR_NO_LOCAL_VARIABLE, (int) (parser->current.end - parser->current.start), parser->current.start);
- }
-
- pm_node_t *variable = (pm_node_t *) pm_local_variable_read_node_create(parser, &parser->current, (uint32_t) depth);
parser_lex(parser);
+ pm_node_t *variable = (pm_node_t *) parse_variable(parser);
+ if (variable == NULL) {
+ PM_PARSER_ERR_TOKEN_FORMAT(parser, parser->previous, PM_ERR_NO_LOCAL_VARIABLE, (int) (parser->previous.end - parser->previous.start), parser->previous.start);
+ variable = (pm_node_t *) pm_local_variable_read_node_create(parser, &parser->previous, 0);
+ }
return (pm_node_t *) pm_pinned_variable_node_create(parser, &operator, variable);
}