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
cc16bd7c
Commit
cc16bd7c
authored
Jan 20, 2013
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #754 from masamitsu-murase/modify_undef_node
Modify handling of NODE_UNDEF.
parents
aaf5f3a0
d16659c7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
99 additions
and
18 deletions
+99
-18
src/codegen.c
src/codegen.c
+11
-6
src/parse.y
src/parse.y
+13
-12
test/t/class.rb
test/t/class.rb
+75
-0
No files found.
src/codegen.c
View file @
cc16bd7c
...
...
@@ -1938,16 +1938,21 @@ codegen(codegen_scope *s, node *tree, int val)
case
NODE_UNDEF
:
{
int
sym
=
new_msym
(
s
,
sym
(
tree
));
int
undef
=
new_msym
(
s
,
mrb_intern
(
s
->
mrb
,
"undef_method"
));
int
num
=
0
;
node
*
t
=
tree
;
genop
(
s
,
MKOP_A
(
OP_TCLASS
,
cursp
()));
push
();
genop
(
s
,
MKOP_ABx
(
OP_LOADSYM
,
cursp
(),
sym
));
push
();
genop
(
s
,
MKOP_A
(
OP_LOADNIL
,
cursp
()));
pop_n
(
2
);
genop
(
s
,
MKOP_ABC
(
OP_SEND
,
cursp
(),
undef
,
2
));
while
(
t
)
{
int
symbol
=
new_msym
(
s
,
sym
(
t
->
car
));
genop
(
s
,
MKOP_ABx
(
OP_LOADSYM
,
cursp
(),
symbol
));
push
();
t
=
t
->
cdr
;
num
++
;
}
pop_n
(
num
+
1
);
genop
(
s
,
MKOP_ABC
(
OP_SEND
,
cursp
(),
undef
,
num
));
if
(
val
)
{
push
();
}
...
...
src/parse.y
View file @
cc16bd7c
...
...
@@ -570,7 +570,7 @@ new_const(parser_state *p, mrb_sym sym)
static node*
new_undef(parser_state *p, mrb_sym sym)
{
return
cons
((node*)NODE_UNDEF, nsym(sym));
return
list2
((node*)NODE_UNDEF, nsym(sym));
}
// (:class class super body)
...
...
@@ -917,7 +917,7 @@ var_reference(parser_state *p, node *lhs)
%type <nd> assoc_list assocs assoc undef_list backref for_var
%type <nd> block_param opt_block_param block_param_def f_opt
%type <nd> bv_decls opt_bv_decl bvar f_larglist lambda_body
%type <nd> brace_block cmd_brace_block do_block lhs none f
item f
_bad_arg
%type <nd> brace_block cmd_brace_block do_block lhs none f_bad_arg
%type <nd> mlhs mlhs_list mlhs_post mlhs_basic mlhs_item mlhs_node mlhs_inner
%type <id> fsym sym basic_symbol operation operation2 operation3
%type <id> cname fname op f_rest_arg f_block_arg opt_f_block_arg f_norm_arg
...
...
@@ -1485,19 +1485,13 @@ fsym : fname
| basic_symbol
;
fitem : fsym
{
$$ = new_sym(p, $1);
}
;
undef_list : fsym
{
$$ = new_undef(p, $1);
}
| undef_list ',' {p->lstate = EXPR_FNAME;} f
ite
m
| undef_list ',' {p->lstate = EXPR_FNAME;} f
sy
m
{
$$ = push($1,
(node*)$4
);
$$ = push($1,
nsym($4)
);
}
;
...
...
@@ -5462,8 +5456,15 @@ parser_dump(mrb_state *mrb, node *tree, int offset)
break;
case NODE_UNDEF:
printf("NODE_UNDEF %s:\n",
mrb_sym2name(mrb, sym(tree)));
printf("NODE_UNDEF");
{
node *t = tree;
while (t) {
printf(" %s", mrb_sym2name(mrb, sym(t->car)));
t = t->cdr;
}
}
printf(":\n");
break;
case NODE_CLASS:
...
...
test/t/class.rb
View file @
cc16bd7c
...
...
@@ -209,3 +209,78 @@ end
assert
(
'Class Dup 2'
)
do
module
M
;
end
;
M
.
dup
.
class
==
Module
end
assert
(
'Class Alias 1'
)
do
class
A
def
test
;
1
;
end
alias
test2
test
alias
:test3
:test
end
A
.
new
.
test2
==
1
and
A
.
new
.
test3
==
1
end
assert
(
'Class Alias 2'
)
do
class
A
def
test
;
1
;
end
alias
test2
test
def
test
;
2
;
end
end
A
.
new
.
test
==
2
and
A
.
new
.
test2
==
1
end
assert
(
'Class Undef 1'
)
do
class
A
def
test1
;
1
;
end
def
test2
;
2
;
end
undef
test1
undef
:test2
end
result1
=
false
begin
A
.
new
.
test1
rescue
NoMethodError
result1
=
true
end
result2
=
false
begin
A
.
new
.
test2
rescue
NoMethodError
result2
=
true
end
result1
==
true
and
result2
==
true
end
assert
(
'Class Undef 2'
)
do
class
A
def
test1
;
1
;
end
def
test2
;
2
;
end
undef
test1
,
test2
end
result1
=
false
begin
A
.
new
.
test1
rescue
NoMethodError
result1
=
true
end
result2
=
false
begin
A
.
new
.
test2
rescue
NoMethodError
result2
=
true
end
result1
==
true
and
result2
==
true
end
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