Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
39191cd9
Unverified
Commit
39191cd9
authored
Dec 24, 2021
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
parse.y: allow arguments start with `_` to appear multiple times; fix #5604
parent
3b59c95e
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1011 additions
and
1003 deletions
+1011
-1003
mrbgems/mruby-compiler/core/parse.y
mrbgems/mruby-compiler/core/parse.y
+6
-2
mrbgems/mruby-compiler/core/y.tab.c
mrbgems/mruby-compiler/core/y.tab.c
+1005
-1001
No files found.
mrbgems/mruby-compiler/core/parse.y
View file @
39191cd9
...
@@ -302,9 +302,13 @@ local_add_f(parser_state *p, mrb_sym sym)
...
@@ -302,9 +302,13 @@ local_add_f(parser_state *p, mrb_sym sym)
node *n = p->locals->car;
node *n = p->locals->car;
while (n) {
while (n) {
if (sym(n->car) == sym) {
if (sym(n->car) == sym) {
mrb_int len;
const char* name = mrb_sym_name_len(p->mrb, sym, &len);
if (len > 0 && name[0] != '_') {
yyerror(p, "duplicated argument name");
yyerror(p, "duplicated argument name");
return;
return;
}
}
}
n = n->cdr;
n = n->cdr;
}
}
p->locals->car = push(p->locals->car, nsym(sym));
p->locals->car = push(p->locals->car, nsym(sym));
...
...
mrbgems/mruby-compiler/core/y.tab.c
View file @
39191cd9
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment