2007-02-24 10:47:53 +03:00
|
|
|
# regular argument
|
|
|
|
assert_equal '1', 'def m() 1 end; m()'
|
|
|
|
assert_equal '1', 'def m(a) a end; m(1)'
|
2007-06-24 11:29:21 +04:00
|
|
|
assert_equal '[1, 2]', 'def m(a,b) [a, b] end; m(1,2)'
|
|
|
|
assert_equal '[1, 2, 3]', 'def m(a,b,c) [a, b, c] end; m(1,2,3)'
|
2015-10-24 09:42:22 +03:00
|
|
|
assert_match /\Awrong number of arguments \(.*\b1\b.* 0\)\z/, %q{
|
2007-06-24 11:29:21 +04:00
|
|
|
def m; end
|
|
|
|
begin
|
|
|
|
m(1)
|
|
|
|
rescue => e
|
|
|
|
e.message
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
2015-10-24 09:42:22 +03:00
|
|
|
assert_match /\Awrong number of arguments \(.*\b0\b.* 1\)\z/, %q{
|
2007-06-24 11:29:21 +04:00
|
|
|
def m a; end
|
|
|
|
begin
|
|
|
|
m
|
|
|
|
rescue => e
|
|
|
|
e.message
|
|
|
|
end
|
|
|
|
}
|
2007-02-24 10:47:53 +03:00
|
|
|
|
|
|
|
# default argument
|
2022-02-04 21:10:15 +03:00
|
|
|
assert_equal '1', 'def m(x=1) x end; m();'
|
2007-02-24 10:47:53 +03:00
|
|
|
assert_equal '1', 'def m(x=7) x end; m(1)'
|
|
|
|
assert_equal '1', 'def m(a,x=1) x end; m(7)'
|
|
|
|
assert_equal '1', 'def m(a,x=7) x end; m(7,1)'
|
|
|
|
assert_equal '1', 'def m(a,b,x=1) x end; m(7,7)'
|
|
|
|
assert_equal '1', 'def m(a,b,x=7) x end; m(7,7,1)'
|
|
|
|
assert_equal '1', 'def m(a,x=1,y=1) x end; m(7)'
|
|
|
|
assert_equal '1', 'def m(a,x=1,y=1) y end; m(7)'
|
|
|
|
assert_equal '1', 'def m(a,x=7,y=1) x end; m(7,1)'
|
|
|
|
assert_equal '1', 'def m(a,x=7,y=1) y end; m(7,1)'
|
|
|
|
assert_equal '1', 'def m(a,x=7,y=7) x end; m(7,1,1)'
|
|
|
|
assert_equal '1', 'def m(a,x=7,y=7) y end; m(7,1,1)'
|
|
|
|
|
|
|
|
# rest argument
|
|
|
|
assert_equal '[]', 'def m(*a) a end; m().inspect'
|
|
|
|
assert_equal '[1]', 'def m(*a) a end; m(1).inspect'
|
|
|
|
assert_equal '[1, 2]', 'def m(*a) a end; m(1,2).inspect'
|
|
|
|
assert_equal '[]', 'def m(x,*a) a end; m(7).inspect'
|
|
|
|
assert_equal '[1]', 'def m(x,*a) a end; m(7,1).inspect'
|
|
|
|
assert_equal '[1, 2]', 'def m(x,*a) a end; m(7,1,2).inspect'
|
|
|
|
assert_equal '[]', 'def m(x,y,*a) a end; m(7,7).inspect'
|
|
|
|
assert_equal '[1]', 'def m(x,y,*a) a end; m(7,7,1).inspect'
|
|
|
|
assert_equal '[1, 2]', 'def m(x,y,*a) a end; m(7,7,1,2).inspect'
|
|
|
|
assert_equal '[]', 'def m(x,y=7,*a) a end; m(7).inspect'
|
|
|
|
assert_equal '[]', 'def m(x,y,z=7,*a) a end; m(7,7).inspect'
|
|
|
|
assert_equal '[]', 'def m(x,y,z=7,*a) a end; m(7,7,7).inspect'
|
|
|
|
assert_equal '[]', 'def m(x,y,z=7,zz=7,*a) a end; m(7,7,7).inspect'
|
|
|
|
assert_equal '[]', 'def m(x,y,z=7,zz=7,*a) a end; m(7,7,7,7).inspect'
|
|
|
|
assert_equal '1', 'def m(x,y,z=7,zz=1,*a) zz end; m(7,7,7).inspect'
|
|
|
|
assert_equal '1', 'def m(x,y,z=7,zz=1,*a) zz end; m(7,7,7).inspect'
|
|
|
|
assert_equal '1', 'def m(x,y,z=7,zz=7,*a) zz end; m(7,7,7,1).inspect'
|
|
|
|
|
|
|
|
# block argument
|
|
|
|
assert_equal 'Proc', 'def m(&block) block end; m{}.class'
|
|
|
|
assert_equal 'nil', 'def m(&block) block end; m().inspect'
|
|
|
|
assert_equal 'Proc', 'def m(a,&block) block end; m(7){}.class'
|
|
|
|
assert_equal 'nil', 'def m(a,&block) block end; m(7).inspect'
|
|
|
|
assert_equal '1', 'def m(a,&block) a end; m(1){}'
|
|
|
|
assert_equal 'Proc', 'def m(a,b=nil,&block) block end; m(7){}.class'
|
|
|
|
assert_equal 'nil', 'def m(a,b=nil,&block) block end; m(7).inspect'
|
|
|
|
assert_equal 'Proc', 'def m(a,b=nil,&block) block end; m(7,7){}.class'
|
|
|
|
assert_equal '1', 'def m(a,b=nil,&block) b end; m(7,1){}'
|
|
|
|
assert_equal 'Proc', 'def m(a,b=nil,*c,&block) block end; m(7){}.class'
|
|
|
|
assert_equal 'nil', 'def m(a,b=nil,*c,&block) block end; m(7).inspect'
|
|
|
|
assert_equal '1', 'def m(a,b=nil,*c,&block) a end; m(1).inspect'
|
|
|
|
assert_equal '1', 'def m(a,b=1,*c,&block) b end; m(7).inspect'
|
|
|
|
assert_equal '1', 'def m(a,b=7,*c,&block) b end; m(7,1).inspect'
|
|
|
|
assert_equal '[1]', 'def m(a,b=7,*c,&block) c end; m(7,7,1).inspect'
|
|
|
|
|
|
|
|
# splat
|
|
|
|
assert_equal '1', 'def m(a) a end; m(*[1])'
|
|
|
|
assert_equal '1', 'def m(x,a) a end; m(7,*[1])'
|
|
|
|
assert_equal '1', 'def m(x,y,a) a end; m(7,7,*[1])'
|
|
|
|
assert_equal '1', 'def m(a,b) a end; m(*[1,7])'
|
|
|
|
assert_equal '1', 'def m(a,b) b end; m(*[7,1])'
|
|
|
|
assert_equal '1', 'def m(x,a,b) b end; m(7,*[7,1])'
|
|
|
|
assert_equal '1', 'def m(x,y,a,b) b end; m(7,7,*[7,1])'
|
|
|
|
assert_equal '1', 'def m(a,b,c) a end; m(*[1,7,7])'
|
|
|
|
assert_equal '1', 'def m(a,b,c) b end; m(*[7,1,7])'
|
|
|
|
assert_equal '1', 'def m(a,b,c) c end; m(*[7,7,1])'
|
|
|
|
assert_equal '1', 'def m(x,a,b,c) a end; m(7,*[1,7,7])'
|
|
|
|
assert_equal '1', 'def m(x,y,a,b,c) a end; m(7,7,*[1,7,7])'
|
|
|
|
|
|
|
|
# hash argument
|
|
|
|
assert_equal '1', 'def m(h) h end; m(7=>1)[7]'
|
|
|
|
assert_equal '1', 'def m(h) h end; m(7=>1).size'
|
|
|
|
assert_equal '1', 'def m(h) h end; m(7=>1, 8=>7)[7]'
|
|
|
|
assert_equal '2', 'def m(h) h end; m(7=>1, 8=>7).size'
|
|
|
|
assert_equal '1', 'def m(h) h end; m(7=>1, 8=>7, 9=>7)[7]'
|
|
|
|
assert_equal '3', 'def m(h) h end; m(7=>1, 8=>7, 9=>7).size'
|
|
|
|
assert_equal '1', 'def m(x,h) h end; m(7, 7=>1)[7]'
|
|
|
|
assert_equal '1', 'def m(x,h) h end; m(7, 7=>1, 8=>7)[7]'
|
|
|
|
assert_equal '1', 'def m(x,h) h end; m(7, 7=>1, 8=>7, 9=>7)[7]'
|
|
|
|
assert_equal '1', 'def m(x,y,h) h end; m(7,7, 7=>1)[7]'
|
|
|
|
assert_equal '1', 'def m(x,y,h) h end; m(7,7, 7=>1, 8=>7)[7]'
|
|
|
|
assert_equal '1', 'def m(x,y,h) h end; m(7,7, 7=>1, 8=>7, 9=>7)[7]'
|
|
|
|
|
|
|
|
# block argument
|
|
|
|
assert_equal '1', %q(def m(&block) mm(&block) end
|
|
|
|
def mm() yield 1 end
|
|
|
|
m {|a| a })
|
|
|
|
assert_equal '1', %q(def m(x,&block) mm(x,&block) end
|
|
|
|
def mm(x) yield 1 end
|
|
|
|
m(7) {|a| a })
|
|
|
|
assert_equal '1', %q(def m(x,y,&block) mm(x,y,&block) end
|
|
|
|
def mm(x,y) yield 1 end
|
|
|
|
m(7,7) {|a| a })
|
|
|
|
|
|
|
|
# recursive call
|
|
|
|
assert_equal '1', %q(def m(n) n == 0 ? 1 : m(n-1) end; m(5))
|
|
|
|
|
|
|
|
# instance method
|
|
|
|
assert_equal '1', %q(class C; def m() 1 end end; C.new.m)
|
|
|
|
assert_equal '1', %q(class C; def m(a) a end end; C.new.m(1))
|
|
|
|
assert_equal '1', %q(class C; def m(a = 1) a end end; C.new.m)
|
|
|
|
assert_equal '[1]', %q(class C; def m(*a) a end end; C.new.m(1).inspect)
|
|
|
|
assert_equal '1', %q( class C
|
|
|
|
def m() mm() end
|
|
|
|
def mm() 1 end
|
|
|
|
end
|
|
|
|
C.new.m )
|
|
|
|
|
|
|
|
# singleton method (const)
|
|
|
|
assert_equal '1', %q(class C; def C.m() 1 end end; C.m)
|
|
|
|
assert_equal '1', %q(class C; def C.m(a) a end end; C.m(1))
|
|
|
|
assert_equal '1', %q(class C; def C.m(a = 1) a end end; C.m)
|
|
|
|
assert_equal '[1]', %q(class C; def C.m(*a) a end end; C.m(1).inspect)
|
|
|
|
assert_equal '1', %q(class C; end; def C.m() 1 end; C.m)
|
|
|
|
assert_equal '1', %q(class C; end; def C.m(a) a end; C.m(1))
|
|
|
|
assert_equal '1', %q(class C; end; def C.m(a = 1) a end; C.m)
|
|
|
|
assert_equal '[1]', %q(class C; end; def C.m(*a) a end; C.m(1).inspect)
|
|
|
|
assert_equal '1', %q(class C; def m() 7 end end; def C.m() 1 end; C.m)
|
|
|
|
assert_equal '1', %q( class C
|
|
|
|
def C.m() mm() end
|
|
|
|
def C.mm() 1 end
|
|
|
|
end
|
|
|
|
C.m )
|
|
|
|
|
|
|
|
# singleton method (lvar)
|
|
|
|
assert_equal '1', %q(obj = Object.new; def obj.m() 1 end; obj.m)
|
|
|
|
assert_equal '1', %q(obj = Object.new; def obj.m(a) a end; obj.m(1))
|
|
|
|
assert_equal '1', %q(obj = Object.new; def obj.m(a=1) a end; obj.m)
|
|
|
|
assert_equal '[1]', %q(obj = Object.new; def obj.m(*a) a end; obj.m(1))
|
|
|
|
assert_equal '1', %q(class C; def m() 7 end; end
|
|
|
|
obj = C.new
|
|
|
|
def obj.m() 1 end
|
|
|
|
obj.m)
|
|
|
|
|
|
|
|
# inheritance
|
|
|
|
assert_equal '1', %q(class A; def m(a) a end end
|
|
|
|
class B < A; end
|
|
|
|
B.new.m(1))
|
|
|
|
assert_equal '1', %q(class A; end
|
|
|
|
class B < A; def m(a) a end end
|
|
|
|
B.new.m(1))
|
|
|
|
assert_equal '1', %q(class A; def m(a) a end end
|
|
|
|
class B < A; end
|
|
|
|
class C < B; end
|
|
|
|
C.new.m(1))
|
|
|
|
|
|
|
|
# include
|
|
|
|
assert_equal '1', %q(class A; def m(a) a end end
|
|
|
|
module M; end
|
|
|
|
class B < A; include M; end
|
|
|
|
B.new.m(1))
|
|
|
|
assert_equal '1', %q(class A; end
|
|
|
|
module M; def m(a) a end end
|
|
|
|
class B < A; include M; end
|
|
|
|
B.new.m(1))
|
|
|
|
|
|
|
|
# alias
|
|
|
|
assert_equal '1', %q( def a() 1 end
|
|
|
|
alias m a
|
|
|
|
m() )
|
|
|
|
assert_equal '1', %q( class C
|
|
|
|
def a() 1 end
|
|
|
|
alias m a
|
|
|
|
end
|
|
|
|
C.new.m )
|
|
|
|
assert_equal '1', %q( class C
|
|
|
|
def a() 1 end
|
|
|
|
alias :m a
|
|
|
|
end
|
|
|
|
C.new.m )
|
|
|
|
assert_equal '1', %q( class C
|
|
|
|
def a() 1 end
|
|
|
|
alias m :a
|
|
|
|
end
|
|
|
|
C.new.m )
|
|
|
|
assert_equal '1', %q( class C
|
|
|
|
def a() 1 end
|
|
|
|
alias :m :a
|
|
|
|
end
|
|
|
|
C.new.m )
|
|
|
|
assert_equal '1', %q( class C
|
|
|
|
def a() 1 end
|
|
|
|
alias m a
|
|
|
|
undef a
|
|
|
|
end
|
|
|
|
C.new.m )
|
|
|
|
|
2007-02-24 12:45:25 +03:00
|
|
|
# undef
|
|
|
|
assert_equal '1', %q( class C
|
|
|
|
def m() end
|
|
|
|
undef m
|
|
|
|
end
|
|
|
|
begin C.new.m; rescue NoMethodError; 1 end )
|
|
|
|
assert_equal '1', %q( class A
|
|
|
|
def m() end
|
|
|
|
end
|
|
|
|
class C < A
|
|
|
|
def m() end
|
|
|
|
undef m
|
|
|
|
end
|
|
|
|
begin C.new.m; rescue NoMethodError; 1 end )
|
|
|
|
assert_equal '1', %q( class A; def a() end end # [yarv-dev:999]
|
|
|
|
class B < A
|
|
|
|
def b() end
|
|
|
|
undef a, b
|
|
|
|
end
|
|
|
|
begin B.new.a; rescue NoMethodError; 1 end )
|
|
|
|
assert_equal '1', %q( class A; def a() end end # [yarv-dev:999]
|
|
|
|
class B < A
|
|
|
|
def b() end
|
|
|
|
undef a, b
|
|
|
|
end
|
|
|
|
begin B.new.b; rescue NoMethodError; 1 end )
|
|
|
|
|
2007-11-27 04:02:30 +03:00
|
|
|
assert_equal '3', %q{
|
|
|
|
def m1
|
|
|
|
1
|
|
|
|
end
|
|
|
|
alias m2 m1
|
|
|
|
alias :"#{'m3'}" m1
|
|
|
|
m1 + m2 + m3
|
|
|
|
}, '[ruby-dev:32308]'
|
|
|
|
assert_equal '1', %q{
|
|
|
|
def foobar
|
|
|
|
end
|
|
|
|
undef :"foo#{:bar}"
|
|
|
|
1
|
|
|
|
}, '[ruby-dev:32308]'
|
|
|
|
assert_equal '1', %q{
|
|
|
|
def foobar
|
|
|
|
1
|
|
|
|
end
|
|
|
|
alias :"bar#{:baz}" :"foo#{:bar}"
|
|
|
|
barbaz
|
|
|
|
}, '[ruby-dev:32308]'
|
|
|
|
|
2007-02-24 10:47:53 +03:00
|
|
|
# private
|
|
|
|
assert_equal '1', %q( class C
|
|
|
|
def m() mm() end
|
|
|
|
def mm() 1 end
|
|
|
|
private :mm
|
|
|
|
end
|
|
|
|
C.new.m )
|
|
|
|
assert_equal '1', %q( class C
|
|
|
|
def m() 7 end
|
|
|
|
private :m
|
|
|
|
end
|
|
|
|
begin C.m; rescue NoMethodError; 1 end )
|
|
|
|
assert_equal '1', %q( class C
|
|
|
|
def C.m() mm() end
|
|
|
|
def C.mm() 1 end
|
|
|
|
private_class_method :mm
|
|
|
|
end
|
|
|
|
C.m )
|
|
|
|
assert_equal '1', %q( class C
|
|
|
|
def C.m() 7 end
|
|
|
|
private_class_method :m
|
|
|
|
end
|
|
|
|
begin C.m; rescue NoMethodError; 1 end )
|
|
|
|
assert_equal '1', %q( class C; def m() 1 end end
|
|
|
|
C.new.m # cache
|
|
|
|
class C
|
|
|
|
alias mm m; private :mm
|
|
|
|
end
|
|
|
|
C.new.m
|
|
|
|
begin C.new.mm; 7; rescue NoMethodError; 1 end )
|
|
|
|
|
|
|
|
# nested method
|
|
|
|
assert_equal '1', %q( class C
|
|
|
|
def m
|
|
|
|
def mm() 1 end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
C.new.m
|
|
|
|
C.new.mm )
|
|
|
|
assert_equal '1', %q( class C
|
|
|
|
def m
|
|
|
|
def mm() 1 end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
instance_eval "C.new.m; C.new.mm" )
|
|
|
|
|
|
|
|
# method_missing
|
|
|
|
assert_equal ':m', %q( class C
|
|
|
|
def method_missing(mid, *args) mid end
|
|
|
|
end
|
|
|
|
C.new.m.inspect )
|
|
|
|
assert_equal ':mm', %q( class C
|
|
|
|
def method_missing(mid, *args) mid end
|
|
|
|
end
|
|
|
|
C.new.mm.inspect )
|
|
|
|
assert_equal '[1, 2]', %q( class C
|
|
|
|
def method_missing(mid, *args) args end
|
|
|
|
end
|
|
|
|
C.new.m(1,2).inspect )
|
|
|
|
assert_equal '1', %q( class C
|
|
|
|
def method_missing(mid, *args) yield 1 end
|
|
|
|
end
|
|
|
|
C.new.m {|a| a })
|
|
|
|
assert_equal 'nil', %q( class C
|
|
|
|
def method_missing(mid, *args, &block) block end
|
|
|
|
end
|
|
|
|
C.new.m.inspect )
|
|
|
|
|
|
|
|
# send
|
|
|
|
assert_equal '1', %q( class C; def m() 1 end end;
|
|
|
|
C.new.__send__(:m) )
|
|
|
|
assert_equal '1', %q( class C; def m() 1 end end;
|
|
|
|
C.new.send(:m) )
|
|
|
|
assert_equal '1', %q( class C; def m(a) a end end;
|
|
|
|
C.new.send(:m,1) )
|
|
|
|
assert_equal '1', %q( class C; def m(a,b) a end end;
|
|
|
|
C.new.send(:m,1,7) )
|
|
|
|
assert_equal '1', %q( class C; def m(x,a=1) a end end;
|
|
|
|
C.new.send(:m,7) )
|
|
|
|
assert_equal '1', %q( class C; def m(x,a=7) a end end;
|
|
|
|
C.new.send(:m,7,1) )
|
|
|
|
assert_equal '[1, 2]', %q( class C; def m(*a) a end end;
|
|
|
|
C.new.send(:m,1,2).inspect )
|
|
|
|
assert_equal '1', %q( class C; def m() 7 end; private :m end
|
2007-12-10 08:34:50 +03:00
|
|
|
begin C.new.public_send(:m); rescue NoMethodError; 1 end )
|
2007-02-24 10:47:53 +03:00
|
|
|
assert_equal '1', %q( class C; def m() 1 end; private :m end
|
2007-11-04 23:36:20 +03:00
|
|
|
C.new.send(:m) )
|
2007-06-24 11:29:21 +04:00
|
|
|
|
2007-07-03 23:11:49 +04:00
|
|
|
# with
|
|
|
|
assert_equal '[:ok1, [:ok2, 11]]', %q{
|
|
|
|
class C
|
|
|
|
def []
|
|
|
|
$ary << :ok1
|
|
|
|
10
|
|
|
|
end
|
|
|
|
def []=(a)
|
|
|
|
$ary << [:ok2, a]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
$ary = []
|
|
|
|
C.new[]+=1
|
|
|
|
$ary
|
|
|
|
}
|
2007-07-03 22:58:42 +04:00
|
|
|
|
2007-06-24 12:40:45 +04:00
|
|
|
# splat and block arguments
|
|
|
|
assert_equal %q{[[[:x, :y, :z], NilClass], [[1, :x, :y, :z], NilClass], [[1, 2, :x, :y, :z], NilClass], [[:obj], NilClass], [[1, :obj], NilClass], [[1, 2, :obj], NilClass], [[], Proc], [[1], Proc], [[1, 2], Proc], [[], Proc], [[1], Proc], [[1, 2], Proc], [[:x, :y, :z], Proc], [[1, :x, :y, :z], Proc], [[1, 2, :x, :y, :z], Proc]]}, %q{
|
|
|
|
def m(*args, &b)
|
|
|
|
$result << [args, b.class]
|
|
|
|
end
|
|
|
|
$result = []
|
|
|
|
ary = [:x, :y, :z]
|
|
|
|
obj = :obj
|
|
|
|
b = Proc.new{}
|
|
|
|
|
|
|
|
m(*ary)
|
|
|
|
m(1,*ary)
|
|
|
|
m(1,2,*ary)
|
|
|
|
m(*obj)
|
|
|
|
m(1,*obj)
|
|
|
|
m(1,2,*obj)
|
|
|
|
m(){}
|
|
|
|
m(1){}
|
|
|
|
m(1,2){}
|
|
|
|
m(&b)
|
|
|
|
m(1,&b)
|
|
|
|
m(1,2,&b)
|
|
|
|
m(*ary,&b)
|
|
|
|
m(1,*ary,&b)
|
|
|
|
m(1,2,*ary,&b)
|
|
|
|
$result
|
|
|
|
}
|
2007-06-24 11:29:21 +04:00
|
|
|
|
2011-06-17 14:18:39 +04:00
|
|
|
# aset and splat
|
|
|
|
assert_equal '4', %q{class Foo;def []=(a,b,c,d);end;end;Foo.new[1,*a=[2,3]]=4}
|
|
|
|
|
2007-06-24 11:29:21 +04:00
|
|
|
# post test
|
|
|
|
assert_equal %q{[1, 2, :o1, :o2, [], 3, 4, NilClass, nil, nil]}, %q{
|
|
|
|
def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2, &b)
|
|
|
|
x, y = :x, :y if $foo
|
|
|
|
[m1, m2, o1, o2, r, p1, p2, b.class, x, y]
|
|
|
|
end
|
|
|
|
; m(1, 2, 3, 4)}
|
|
|
|
|
|
|
|
assert_equal %q{[1, 2, 3, :o2, [], 4, 5, NilClass, nil, nil]}, %q{
|
|
|
|
def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2, &b)
|
|
|
|
x, y = :x, :y if $foo
|
|
|
|
[m1, m2, o1, o2, r, p1, p2, b.class, x, y]
|
|
|
|
end
|
|
|
|
; m(1, 2, 3, 4, 5)}
|
|
|
|
|
|
|
|
assert_equal %q{[1, 2, 3, 4, [], 5, 6, NilClass, nil, nil]}, %q{
|
|
|
|
def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2, &b)
|
|
|
|
x, y = :x, :y if $foo
|
|
|
|
[m1, m2, o1, o2, r, p1, p2, b.class, x, y]
|
|
|
|
end
|
|
|
|
; m(1, 2, 3, 4, 5, 6)}
|
|
|
|
|
|
|
|
assert_equal %q{[1, 2, 3, 4, [5], 6, 7, NilClass, nil, nil]}, %q{
|
|
|
|
def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2, &b)
|
|
|
|
x, y = :x, :y if $foo
|
|
|
|
[m1, m2, o1, o2, r, p1, p2, b.class, x, y]
|
|
|
|
end
|
|
|
|
; m(1, 2, 3, 4, 5, 6, 7)}
|
|
|
|
|
|
|
|
assert_equal %q{[1, 2, 3, 4, [5, 6], 7, 8, NilClass, nil, nil]}, %q{
|
|
|
|
def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2, &b)
|
|
|
|
x, y = :x, :y if $foo
|
|
|
|
[m1, m2, o1, o2, r, p1, p2, b.class, x, y]
|
|
|
|
end
|
|
|
|
; m(1, 2, 3, 4, 5, 6, 7, 8)}
|
|
|
|
|
|
|
|
assert_equal %q{[1, 2, 3, 4, [5, 6, 7], 8, 9, NilClass, nil, nil]}, %q{
|
|
|
|
def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2, &b)
|
|
|
|
x, y = :x, :y if $foo
|
|
|
|
[m1, m2, o1, o2, r, p1, p2, b.class, x, y]
|
|
|
|
end
|
|
|
|
; m(1, 2, 3, 4, 5, 6, 7, 8, 9)}
|
|
|
|
|
|
|
|
assert_equal %q{[1, 2, 3, 4, [5, 6, 7, 8], 9, 10, NilClass, nil, nil]}, %q{
|
|
|
|
def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2, &b)
|
|
|
|
x, y = :x, :y if $foo
|
|
|
|
[m1, m2, o1, o2, r, p1, p2, b.class, x, y]
|
|
|
|
end
|
|
|
|
; m(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)}
|
|
|
|
|
|
|
|
assert_equal %q{[1, 2, 3, 4, [5, 6, 7, 8, 9], 10, 11, NilClass, nil, nil]}, %q{
|
|
|
|
def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2, &b)
|
|
|
|
x, y = :x, :y if $foo
|
|
|
|
[m1, m2, o1, o2, r, p1, p2, b.class, x, y]
|
|
|
|
end
|
|
|
|
; m(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11)}
|
|
|
|
|
|
|
|
assert_equal %q{[1, 2, :o1, :o2, [], 3, 4, Proc, nil, nil]}, %q{
|
|
|
|
def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2, &b)
|
|
|
|
x, y = :x, :y if $foo
|
|
|
|
[m1, m2, o1, o2, r, p1, p2, b.class, x, y]
|
|
|
|
end
|
|
|
|
; m(1, 2, 3, 4){}}
|
|
|
|
|
|
|
|
assert_equal %q{[1, 2, 3, :o2, [], 4, 5, Proc, nil, nil]}, %q{
|
|
|
|
def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2, &b)
|
|
|
|
x, y = :x, :y if $foo
|
|
|
|
[m1, m2, o1, o2, r, p1, p2, b.class, x, y]
|
|
|
|
end
|
|
|
|
; m(1, 2, 3, 4, 5){}}
|
|
|
|
|
|
|
|
assert_equal %q{[1, 2, 3, 4, [], 5, 6, Proc, nil, nil]}, %q{
|
|
|
|
def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2, &b)
|
|
|
|
x, y = :x, :y if $foo
|
|
|
|
[m1, m2, o1, o2, r, p1, p2, b.class, x, y]
|
|
|
|
end
|
|
|
|
; m(1, 2, 3, 4, 5, 6){}}
|
|
|
|
|
|
|
|
assert_equal %q{[1, 2, 3, 4, [5], 6, 7, Proc, nil, nil]}, %q{
|
|
|
|
def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2, &b)
|
|
|
|
x, y = :x, :y if $foo
|
|
|
|
[m1, m2, o1, o2, r, p1, p2, b.class, x, y]
|
|
|
|
end
|
|
|
|
; m(1, 2, 3, 4, 5, 6, 7){}}
|
|
|
|
|
|
|
|
assert_equal %q{[1, 2, 3, 4, [5, 6], 7, 8, Proc, nil, nil]}, %q{
|
|
|
|
def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2, &b)
|
|
|
|
x, y = :x, :y if $foo
|
|
|
|
[m1, m2, o1, o2, r, p1, p2, b.class, x, y]
|
|
|
|
end
|
|
|
|
; m(1, 2, 3, 4, 5, 6, 7, 8){}}
|
|
|
|
|
|
|
|
assert_equal %q{[1, 2, 3, 4, [5, 6, 7], 8, 9, Proc, nil, nil]}, %q{
|
|
|
|
def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2, &b)
|
|
|
|
x, y = :x, :y if $foo
|
|
|
|
[m1, m2, o1, o2, r, p1, p2, b.class, x, y]
|
|
|
|
end
|
|
|
|
; m(1, 2, 3, 4, 5, 6, 7, 8, 9){}}
|
|
|
|
|
|
|
|
assert_equal %q{[1, 2, 3, 4, [5, 6, 7, 8], 9, 10, Proc, nil, nil]}, %q{
|
|
|
|
def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2, &b)
|
|
|
|
x, y = :x, :y if $foo
|
|
|
|
[m1, m2, o1, o2, r, p1, p2, b.class, x, y]
|
|
|
|
end
|
|
|
|
; m(1, 2, 3, 4, 5, 6, 7, 8, 9, 10){}}
|
|
|
|
|
|
|
|
assert_equal %q{[1, 2, 3, 4, [5, 6, 7, 8, 9], 10, 11, Proc, nil, nil]}, %q{
|
|
|
|
def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2, &b)
|
|
|
|
x, y = :x, :y if $foo
|
|
|
|
[m1, m2, o1, o2, r, p1, p2, b.class, x, y]
|
|
|
|
end
|
|
|
|
; m(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11){}}
|
|
|
|
|
|
|
|
assert_equal %q{[1, 2, :o1, :o2, [], 3, 4, nil, nil]}, %q{
|
|
|
|
def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2)
|
|
|
|
x, y = :x, :y if $foo
|
|
|
|
[m1, m2, o1, o2, r, p1, p2, x, y]
|
|
|
|
end
|
|
|
|
; m(1, 2, 3, 4)}
|
|
|
|
|
|
|
|
assert_equal %q{[1, 2, 3, :o2, [], 4, 5, nil, nil]}, %q{
|
|
|
|
def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2)
|
|
|
|
x, y = :x, :y if $foo
|
|
|
|
[m1, m2, o1, o2, r, p1, p2, x, y]
|
|
|
|
end
|
|
|
|
; m(1, 2, 3, 4, 5)}
|
|
|
|
|
|
|
|
assert_equal %q{[1, 2, 3, 4, [], 5, 6, nil, nil]}, %q{
|
|
|
|
def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2)
|
|
|
|
x, y = :x, :y if $foo
|
|
|
|
[m1, m2, o1, o2, r, p1, p2, x, y]
|
|
|
|
end
|
|
|
|
; m(1, 2, 3, 4, 5, 6)}
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# super
|
|
|
|
#
|
|
|
|
=begin
|
|
|
|
# below programs are generated by this program:
|
|
|
|
|
|
|
|
BASE = <<EOS__
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; <TEST>; super; end; end
|
|
|
|
EOS__
|
|
|
|
|
|
|
|
tests = {
|
|
|
|
%q{
|
|
|
|
def m
|
|
|
|
} => %q{
|
|
|
|
C1.new.m
|
|
|
|
},
|
|
|
|
#
|
|
|
|
%q{
|
|
|
|
def m a
|
|
|
|
} => %q{
|
|
|
|
C1.new.m 1
|
|
|
|
},
|
|
|
|
%q{
|
|
|
|
def m a
|
|
|
|
a = :a
|
|
|
|
} => %q{
|
|
|
|
C1.new.m 1
|
|
|
|
},
|
|
|
|
#
|
|
|
|
%q{
|
|
|
|
def m a, o=:o
|
|
|
|
} => %q{
|
|
|
|
C1.new.m 1
|
|
|
|
C1.new.m 1, 2
|
|
|
|
},
|
|
|
|
%q{
|
|
|
|
def m a, o=:o
|
|
|
|
a = :a
|
|
|
|
} => %q{
|
|
|
|
C1.new.m 1
|
|
|
|
C1.new.m 1, 2
|
|
|
|
},
|
|
|
|
%q{
|
|
|
|
def m a, o=:o
|
|
|
|
o = :x
|
|
|
|
} => %q{
|
|
|
|
C1.new.m 1
|
|
|
|
C1.new.m 1, 2
|
|
|
|
},
|
|
|
|
#
|
|
|
|
%q{
|
|
|
|
def m a, *r
|
|
|
|
} => %q{
|
|
|
|
C1.new.m 1
|
|
|
|
C1.new.m 1, 2
|
|
|
|
C1.new.m 1, 2, 3
|
|
|
|
},
|
|
|
|
%q{
|
|
|
|
def m a, *r
|
|
|
|
r = [:x, :y]
|
|
|
|
} => %q{
|
|
|
|
C1.new.m 1
|
|
|
|
C1.new.m 1, 2
|
|
|
|
C1.new.m 1, 2, 3
|
|
|
|
},
|
|
|
|
#
|
|
|
|
%q{
|
|
|
|
def m a, o=:o, *r
|
|
|
|
} => %q{
|
|
|
|
C1.new.m 1
|
|
|
|
C1.new.m 1, 2
|
|
|
|
C1.new.m 1, 2, 3
|
|
|
|
C1.new.m 1, 2, 3, 4
|
|
|
|
},
|
|
|
|
#
|
|
|
|
%q{
|
|
|
|
def m a, o=:o, *r, &b
|
|
|
|
} => %q{
|
|
|
|
C1.new.m 1
|
|
|
|
C1.new.m 1, 2
|
|
|
|
C1.new.m 1, 2, 3
|
|
|
|
C1.new.m 1, 2, 3, 4
|
|
|
|
C1.new.m(1){}
|
|
|
|
C1.new.m(1, 2){}
|
|
|
|
C1.new.m(1, 2, 3){}
|
|
|
|
C1.new.m(1, 2, 3, 4){}
|
|
|
|
},
|
|
|
|
#
|
|
|
|
"def m(m1, m2, o1=:o1, o2=:o2, p1, p2)" =>
|
|
|
|
%q{
|
|
|
|
C1.new.m(1,2,3,4)
|
|
|
|
C1.new.m(1,2,3,4,5)
|
|
|
|
C1.new.m(1,2,3,4,5,6)
|
|
|
|
},
|
|
|
|
#
|
|
|
|
"def m(m1, m2, *r, p1, p2)" =>
|
|
|
|
%q{
|
|
|
|
C1.new.m(1,2,3,4)
|
|
|
|
C1.new.m(1,2,3,4,5)
|
|
|
|
C1.new.m(1,2,3,4,5,6)
|
|
|
|
C1.new.m(1,2,3,4,5,6,7)
|
|
|
|
C1.new.m(1,2,3,4,5,6,7,8)
|
|
|
|
},
|
|
|
|
#
|
|
|
|
"def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2)" =>
|
|
|
|
%q{
|
|
|
|
C1.new.m(1,2,3,4)
|
|
|
|
C1.new.m(1,2,3,4,5)
|
|
|
|
C1.new.m(1,2,3,4,5,6)
|
|
|
|
C1.new.m(1,2,3,4,5,6,7)
|
|
|
|
C1.new.m(1,2,3,4,5,6,7,8)
|
|
|
|
C1.new.m(1,2,3,4,5,6,7,8,9)
|
|
|
|
},
|
|
|
|
|
|
|
|
###
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
tests.each{|setup, methods| setup = setup.dup; setup.strip!
|
2008-02-13 10:26:52 +03:00
|
|
|
setup = BASE.gsub(/<TEST>/){setup}
|
2007-06-24 11:29:21 +04:00
|
|
|
methods.split(/\n/).each{|m| m = m.dup; m.strip!
|
|
|
|
next if m.empty?
|
|
|
|
expr = "#{setup}; #{m}"
|
|
|
|
result = eval(expr)
|
|
|
|
puts "assert_equal %q{#{result.inspect}}, %q{\n#{expr}}"
|
|
|
|
puts
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2, :o1, :o2, 3, 4]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m(m1, m2, o1=:o1, o2=:o2, p1, p2); super; end; end
|
|
|
|
; C1.new.m(1,2,3,4)}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2, 3, :o2, 4, 5]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m(m1, m2, o1=:o1, o2=:o2, p1, p2); super; end; end
|
|
|
|
; C1.new.m(1,2,3,4,5)}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2, 3, 4, 5, 6]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m(m1, m2, o1=:o1, o2=:o2, p1, p2); super; end; end
|
|
|
|
; C1.new.m(1,2,3,4,5,6)}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, :o]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a, o=:o, *r; super; end; end
|
|
|
|
; C1.new.m 1}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a, o=:o, *r; super; end; end
|
|
|
|
; C1.new.m 1, 2}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2, 3]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a, o=:o, *r; super; end; end
|
|
|
|
; C1.new.m 1, 2, 3}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2, 3, 4]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a, o=:o, *r; super; end; end
|
|
|
|
; C1.new.m 1, 2, 3, 4}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [:a]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a
|
|
|
|
a = :a; super; end; end
|
|
|
|
; C1.new.m 1}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2, 3, 4]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m(m1, m2, *r, p1, p2); super; end; end
|
|
|
|
; C1.new.m(1,2,3,4)}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2, 3, 4, 5]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m(m1, m2, *r, p1, p2); super; end; end
|
|
|
|
; C1.new.m(1,2,3,4,5)}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2, 3, 4, 5, 6]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m(m1, m2, *r, p1, p2); super; end; end
|
|
|
|
; C1.new.m(1,2,3,4,5,6)}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2, 3, 4, 5, 6, 7]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m(m1, m2, *r, p1, p2); super; end; end
|
|
|
|
; C1.new.m(1,2,3,4,5,6,7)}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2, 3, 4, 5, 6, 7, 8]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m(m1, m2, *r, p1, p2); super; end; end
|
|
|
|
; C1.new.m(1,2,3,4,5,6,7,8)}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, :o]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a, o=:o, *r, &b; super; end; end
|
|
|
|
; C1.new.m 1}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a, o=:o, *r, &b; super; end; end
|
|
|
|
; C1.new.m 1, 2}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2, 3]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a, o=:o, *r, &b; super; end; end
|
|
|
|
; C1.new.m 1, 2, 3}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2, 3, 4]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a, o=:o, *r, &b; super; end; end
|
|
|
|
; C1.new.m 1, 2, 3, 4}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, :o]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a, o=:o, *r, &b; super; end; end
|
|
|
|
; C1.new.m(1){}}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a, o=:o, *r, &b; super; end; end
|
|
|
|
; C1.new.m(1, 2){}}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2, 3]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a, o=:o, *r, &b; super; end; end
|
|
|
|
; C1.new.m(1, 2, 3){}}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2, 3, 4]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a, o=:o, *r, &b; super; end; end
|
|
|
|
; C1.new.m(1, 2, 3, 4){}}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, :x]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a, o=:o
|
|
|
|
o = :x; super; end; end
|
|
|
|
; C1.new.m 1}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, :x]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a, o=:o
|
|
|
|
o = :x; super; end; end
|
|
|
|
; C1.new.m 1, 2}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [:a, :o]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a, o=:o
|
|
|
|
a = :a; super; end; end
|
|
|
|
; C1.new.m 1}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [:a, 2]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a, o=:o
|
|
|
|
a = :a; super; end; end
|
|
|
|
; C1.new.m 1, 2}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a; super; end; end
|
|
|
|
; C1.new.m 1}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, :x, :y]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a, *r
|
|
|
|
r = [:x, :y]; super; end; end
|
|
|
|
; C1.new.m 1}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, :x, :y]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a, *r
|
|
|
|
r = [:x, :y]; super; end; end
|
|
|
|
; C1.new.m 1, 2}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, :x, :y]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a, *r
|
|
|
|
r = [:x, :y]; super; end; end
|
|
|
|
; C1.new.m 1, 2, 3}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2, :o1, :o2, 3, 4]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2); super; end; end
|
|
|
|
; C1.new.m(1,2,3,4)}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2, 3, :o2, 4, 5]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2); super; end; end
|
|
|
|
; C1.new.m(1,2,3,4,5)}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2, 3, 4, 5, 6]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2); super; end; end
|
|
|
|
; C1.new.m(1,2,3,4,5,6)}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2, 3, 4, 5, 6, 7]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2); super; end; end
|
|
|
|
; C1.new.m(1,2,3,4,5,6,7)}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2, 3, 4, 5, 6, 7, 8]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2); super; end; end
|
|
|
|
; C1.new.m(1,2,3,4,5,6,7,8)}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2, 3, 4, 5, 6, 7, 8, 9]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2); super; end; end
|
|
|
|
; C1.new.m(1,2,3,4,5,6,7,8,9)}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a, *r; super; end; end
|
|
|
|
; C1.new.m 1}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a, *r; super; end; end
|
|
|
|
; C1.new.m 1, 2}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2, 3]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a, *r; super; end; end
|
|
|
|
; C1.new.m 1, 2, 3}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, []]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m; super; end; end
|
|
|
|
; C1.new.m}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, :o]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a, o=:o; super; end; end
|
|
|
|
; C1.new.m 1}
|
|
|
|
|
|
|
|
assert_equal %q{[:C0_m, [1, 2]]}, %q{
|
|
|
|
class C0; def m *args; [:C0_m, args]; end; end
|
|
|
|
class C1 < C0; def m a, o=:o; super; end; end
|
|
|
|
; C1.new.m 1, 2}
|
|
|
|
|
2007-08-18 09:07:07 +04:00
|
|
|
assert_equal 'ok', %q{
|
|
|
|
class C
|
|
|
|
def x=(n)
|
|
|
|
end
|
|
|
|
def m
|
|
|
|
self.x = :ok
|
|
|
|
end
|
|
|
|
end
|
|
|
|
C.new.m
|
|
|
|
}
|
2007-08-26 00:56:51 +04:00
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
proc{
|
|
|
|
$SAFE = 1
|
|
|
|
class C
|
|
|
|
def m
|
|
|
|
:ok
|
|
|
|
end
|
|
|
|
end
|
|
|
|
}.call
|
|
|
|
C.new.m
|
|
|
|
}, '[ruby-core:11998]'
|
|
|
|
|
2007-09-26 15:01:18 +04:00
|
|
|
assert_equal 'ok', %q{
|
|
|
|
class B
|
|
|
|
def m() :fail end
|
|
|
|
end
|
|
|
|
class C < B
|
|
|
|
undef m
|
|
|
|
begin
|
|
|
|
remove_method :m
|
|
|
|
rescue NameError
|
|
|
|
end
|
|
|
|
end
|
|
|
|
begin
|
|
|
|
C.new.m
|
|
|
|
rescue NameError
|
|
|
|
:ok
|
|
|
|
end
|
|
|
|
}, '[ruby-dev:31816], [ruby-dev:31817]'
|
|
|
|
|
2007-10-01 11:18:26 +04:00
|
|
|
assert_normal_exit %q{
|
2007-10-01 11:43:21 +04:00
|
|
|
begin
|
2014-01-15 05:57:59 +04:00
|
|
|
Process.setrlimit(Process::RLIMIT_STACK, 4_206_592)
|
|
|
|
# FreeBSD SEGVs this less than 4M + 12K bytes.
|
2007-10-01 11:43:21 +04:00
|
|
|
rescue Exception
|
|
|
|
exit
|
|
|
|
end
|
2007-09-26 15:01:18 +04:00
|
|
|
class C
|
2008-07-27 17:24:18 +04:00
|
|
|
attr "a" * (10*1024*1024)
|
2007-09-26 15:01:18 +04:00
|
|
|
end
|
|
|
|
}, '[ruby-dev:31818]'
|
|
|
|
|
2007-10-02 02:02:23 +04:00
|
|
|
assert_equal 'ok', %q{
|
|
|
|
class Module
|
|
|
|
def define_method2(name, &block)
|
|
|
|
define_method(name, &block)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
class C
|
|
|
|
define_method2(:m) {|x, y| :fail }
|
|
|
|
end
|
|
|
|
begin
|
|
|
|
C.new.m([1,2])
|
|
|
|
rescue ArgumentError
|
|
|
|
:ok
|
|
|
|
end
|
|
|
|
}
|
2007-11-27 04:47:34 +03:00
|
|
|
|
|
|
|
assert_not_match /method_missing/, %q{
|
|
|
|
STDERR.reopen(STDOUT)
|
|
|
|
variable_or_mehtod_not_exist
|
|
|
|
}
|
2008-06-15 20:50:37 +04:00
|
|
|
|
|
|
|
assert_equal '[false, false, false, false, true, true]', %q{
|
|
|
|
class C
|
|
|
|
define_method(:foo) {
|
|
|
|
block_given?
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
C.new.foo {}
|
|
|
|
|
|
|
|
class D
|
|
|
|
def foo
|
|
|
|
D.module_eval{
|
|
|
|
define_method(:m1){
|
|
|
|
block_given?
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
def bar
|
|
|
|
D.module_eval{
|
|
|
|
define_method(:m2){
|
|
|
|
block_given?
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
D.new.foo
|
|
|
|
D.new.bar{}
|
|
|
|
[C.new.foo, C.new.foo{}, D.new.m1, D.new.m1{}, D.new.m2, D.new.m2{}]
|
|
|
|
}, '[ruby-core:14813]'
|
2008-08-29 12:24:51 +04:00
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
class Foo
|
|
|
|
define_method(:foo) do |&b|
|
|
|
|
b.call
|
|
|
|
end
|
|
|
|
end
|
|
|
|
Foo.new.foo do
|
|
|
|
break :ok
|
|
|
|
end
|
|
|
|
}, '[ruby-dev:36028]'
|
2008-10-22 00:45:35 +04:00
|
|
|
|
|
|
|
assert_equal '[1, 2, [3, 4]]', %q{
|
|
|
|
def regular(a, b, *c)
|
|
|
|
[a, b, c]
|
|
|
|
end
|
2011-05-15 15:55:52 +04:00
|
|
|
regular(*[], 1, *[], *[2, 3], *[], 4)
|
2008-10-22 00:45:35 +04:00
|
|
|
}, '[ruby-core:19413]'
|
|
|
|
|
|
|
|
assert_equal '[1, [:foo, 3, 4, :foo]]', %q{
|
|
|
|
def regular(a, *b)
|
|
|
|
[a, b]
|
|
|
|
end
|
|
|
|
a = b = [:foo]
|
|
|
|
regular(1, *a, *[3, 4], *b)
|
|
|
|
}
|
2008-12-24 14:47:00 +03:00
|
|
|
|
|
|
|
assert_equal '["B", "A"]', %q{
|
|
|
|
class A
|
|
|
|
def m
|
|
|
|
'A'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class B < A
|
2011-05-15 15:55:52 +04:00
|
|
|
define_method(:m) do
|
2008-12-24 14:47:00 +03:00
|
|
|
['B', super()]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class C < B
|
|
|
|
end
|
|
|
|
|
|
|
|
C.new.m
|
|
|
|
}
|
2008-12-25 07:19:33 +03:00
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
module Foo
|
|
|
|
def foo
|
|
|
|
begin
|
|
|
|
super
|
|
|
|
rescue NoMethodError
|
|
|
|
:ok
|
|
|
|
end
|
|
|
|
end
|
|
|
|
module_function :foo
|
|
|
|
end
|
|
|
|
Foo.foo
|
|
|
|
}, '[ruby-dev:37587]'
|
|
|
|
|
|
|
|
assert_equal 'Object#foo', %q{
|
|
|
|
class Object
|
|
|
|
def self.foo
|
|
|
|
"Object.foo"
|
|
|
|
end
|
|
|
|
def foo
|
|
|
|
"Object#foo"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module Foo
|
|
|
|
def foo
|
|
|
|
begin
|
|
|
|
super
|
|
|
|
rescue NoMethodError
|
|
|
|
:ok
|
|
|
|
end
|
|
|
|
end
|
|
|
|
module_function :foo
|
|
|
|
end
|
|
|
|
Foo.foo
|
|
|
|
}, '[ruby-dev:37587]'
|
2009-02-22 04:47:11 +03:00
|
|
|
|
|
|
|
assert_normal_exit %q{
|
|
|
|
class BasicObject
|
|
|
|
remove_method :method_missing
|
|
|
|
end
|
|
|
|
begin
|
|
|
|
"a".lalala!
|
|
|
|
rescue NoMethodError => e
|
|
|
|
e.message == "undefined method `lalala!' for \"a\":String" ? :ok : :ng
|
|
|
|
end
|
|
|
|
}, '[ruby-core:22298]'
|
2009-07-30 16:42:41 +04:00
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
"hello"[0] ||= "H"
|
|
|
|
"ok"
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
"hello"[0, 1] ||= "H"
|
|
|
|
"ok"
|
|
|
|
}
|
2010-05-05 21:51:21 +04:00
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
class C
|
|
|
|
define_method(:foo) do
|
|
|
|
C.class_eval { remove_method(:foo) }
|
|
|
|
super()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
begin
|
|
|
|
C.new.foo
|
|
|
|
rescue NoMethodError
|
|
|
|
'ok'
|
|
|
|
end
|
|
|
|
}
|
2010-09-21 20:53:06 +04:00
|
|
|
|
2012-10-16 01:35:29 +04:00
|
|
|
# should not cache when splat
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
class C
|
|
|
|
attr_reader :a
|
|
|
|
def initialize
|
|
|
|
@a = 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def m *args
|
|
|
|
C.new.a(*args)
|
|
|
|
end
|
|
|
|
|
|
|
|
m()
|
|
|
|
begin
|
|
|
|
m(1)
|
|
|
|
rescue ArgumentError
|
|
|
|
'ok'
|
|
|
|
end
|
|
|
|
}
|
2012-11-13 12:34:43 +04:00
|
|
|
|
|
|
|
assert_equal 'DC', %q{
|
|
|
|
$result = []
|
|
|
|
|
|
|
|
class C
|
|
|
|
def foo *args
|
|
|
|
$result << 'C'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
class D
|
|
|
|
def foo *args
|
|
|
|
$result << 'D'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
o1 = $o1 = C.new
|
|
|
|
o2 = $o2 = D.new
|
|
|
|
|
|
|
|
args = Object.new
|
|
|
|
def args.to_a
|
|
|
|
test1 $o2, nil
|
|
|
|
[]
|
|
|
|
end
|
|
|
|
def test1 o, args
|
|
|
|
o.foo(*args)
|
|
|
|
end
|
|
|
|
test1 o1, args
|
|
|
|
$result.join
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal 'DC', %q{
|
|
|
|
$result = []
|
|
|
|
|
|
|
|
class C
|
|
|
|
def foo *args
|
|
|
|
$result << 'C'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
class D
|
|
|
|
def foo *args
|
|
|
|
$result << 'D'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
o1 = $o1 = C.new
|
|
|
|
o2 = $o2 = D.new
|
|
|
|
|
|
|
|
block = Object.new
|
|
|
|
def block.to_proc
|
|
|
|
test2 $o2, %w(a, b, c), nil
|
|
|
|
Proc.new{}
|
|
|
|
end
|
|
|
|
def test2 o, args, block
|
|
|
|
o.foo(*args, &block)
|
|
|
|
end
|
|
|
|
test2 o1, [], block
|
|
|
|
$result.join
|
|
|
|
}
|
2024-01-11 22:57:03 +03:00
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
def foo
|
|
|
|
binding
|
|
|
|
["ok"].first
|
|
|
|
end
|
|
|
|
foo
|
|
|
|
foo
|
|
|
|
}, '[Bug #20178]'
|
Optimized forwarding callers and callees
This patch optimizes forwarding callers and callees. It only optimizes methods that only take `...` as their parameter, and then pass `...` to other calls.
Calls it optimizes look like this:
```ruby
def bar(a) = a
def foo(...) = bar(...) # optimized
foo(123)
```
```ruby
def bar(a) = a
def foo(...) = bar(1, 2, ...) # optimized
foo(123)
```
```ruby
def bar(*a) = a
def foo(...)
list = [1, 2]
bar(*list, ...) # optimized
end
foo(123)
```
All variants of the above but using `super` are also optimized, including a bare super like this:
```ruby
def foo(...)
super
end
```
This patch eliminates intermediate allocations made when calling methods that accept `...`.
We can observe allocation elimination like this:
```ruby
def m
x = GC.stat(:total_allocated_objects)
yield
GC.stat(:total_allocated_objects) - x
end
def bar(a) = a
def foo(...) = bar(...)
def test
m { foo(123) }
end
test
p test # allocates 1 object on master, but 0 objects with this patch
```
```ruby
def bar(a, b:) = a + b
def foo(...) = bar(...)
def test
m { foo(1, b: 2) }
end
test
p test # allocates 2 objects on master, but 0 objects with this patch
```
How does it work?
-----------------
This patch works by using a dynamic stack size when passing forwarded parameters to callees.
The caller's info object (known as the "CI") contains the stack size of the
parameters, so we pass the CI object itself as a parameter to the callee.
When forwarding parameters, the forwarding ISeq uses the caller's CI to determine how much stack to copy, then copies the caller's stack before calling the callee.
The CI at the forwarded call site is adjusted using information from the caller's CI.
I think this description is kind of confusing, so let's walk through an example with code.
```ruby
def delegatee(a, b) = a + b
def delegator(...)
delegatee(...) # CI2 (FORWARDING)
end
def caller
delegator(1, 2) # CI1 (argc: 2)
end
```
Before we call the delegator method, the stack looks like this:
```
Executing Line | Code | Stack
---------------+---------------------------------------+--------
1| def delegatee(a, b) = a + b | self
2| | 1
3| def delegator(...) | 2
4| # |
5| delegatee(...) # CI2 (FORWARDING) |
6| end |
7| |
8| def caller |
-> 9| delegator(1, 2) # CI1 (argc: 2) |
10| end |
```
The ISeq for `delegator` is tagged as "forwardable", so when `caller` calls in
to `delegator`, it writes `CI1` on to the stack as a local variable for the
`delegator` method. The `delegator` method has a special local called `...`
that holds the caller's CI object.
Here is the ISeq disasm fo `delegator`:
```
== disasm: #<ISeq:delegator@-e:1 (1,0)-(1,39)>
local table (size: 1, argc: 0 [opts: 0, rest: -1, post: 0, block: -1, kw: -1@-1, kwrest: -1])
[ 1] "..."@0
0000 putself ( 1)[LiCa]
0001 getlocal_WC_0 "..."@0
0003 send <calldata!mid:delegatee, argc:0, FCALL|FORWARDING>, nil
0006 leave [Re]
```
The local called `...` will contain the caller's CI: CI1.
Here is the stack when we enter `delegator`:
```
Executing Line | Code | Stack
---------------+---------------------------------------+--------
1| def delegatee(a, b) = a + b | self
2| | 1
3| def delegator(...) | 2
-> 4| # | CI1 (argc: 2)
5| delegatee(...) # CI2 (FORWARDING) | cref_or_me
6| end | specval
7| | type
8| def caller |
9| delegator(1, 2) # CI1 (argc: 2) |
10| end |
```
The CI at `delegatee` on line 5 is tagged as "FORWARDING", so it knows to
memcopy the caller's stack before calling `delegatee`. In this case, it will
memcopy self, 1, and 2 to the stack before calling `delegatee`. It knows how much
memory to copy from the caller because `CI1` contains stack size information
(argc: 2).
Before executing the `send` instruction, we push `...` on the stack. The
`send` instruction pops `...`, and because it is tagged with `FORWARDING`, it
knows to memcopy (using the information in the CI it just popped):
```
== disasm: #<ISeq:delegator@-e:1 (1,0)-(1,39)>
local table (size: 1, argc: 0 [opts: 0, rest: -1, post: 0, block: -1, kw: -1@-1, kwrest: -1])
[ 1] "..."@0
0000 putself ( 1)[LiCa]
0001 getlocal_WC_0 "..."@0
0003 send <calldata!mid:delegatee, argc:0, FCALL|FORWARDING>, nil
0006 leave [Re]
```
Instruction 001 puts the caller's CI on the stack. `send` is tagged with
FORWARDING, so it reads the CI and _copies_ the callers stack to this stack:
```
Executing Line | Code | Stack
---------------+---------------------------------------+--------
1| def delegatee(a, b) = a + b | self
2| | 1
3| def delegator(...) | 2
4| # | CI1 (argc: 2)
-> 5| delegatee(...) # CI2 (FORWARDING) | cref_or_me
6| end | specval
7| | type
8| def caller | self
9| delegator(1, 2) # CI1 (argc: 2) | 1
10| end | 2
```
The "FORWARDING" call site combines information from CI1 with CI2 in order
to support passing other values in addition to the `...` value, as well as
perfectly forward splat args, kwargs, etc.
Since we're able to copy the stack from `caller` in to `delegator`'s stack, we
can avoid allocating objects.
I want to do this to eliminate object allocations for delegate methods.
My long term goal is to implement `Class#new` in Ruby and it uses `...`.
I was able to implement `Class#new` in Ruby
[here](https://github.com/ruby/ruby/pull/9289).
If we adopt the technique in this patch, then we can optimize allocating
objects that take keyword parameters for `initialize`.
For example, this code will allocate 2 objects: one for `SomeObject`, and one
for the kwargs:
```ruby
SomeObject.new(foo: 1)
```
If we combine this technique, plus implement `Class#new` in Ruby, then we can
reduce allocations for this common operation.
Co-Authored-By: John Hawthorn <john@hawthorn.email>
Co-Authored-By: Alan Wu <XrXr@users.noreply.github.com>
2024-04-15 20:48:53 +03:00
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
def bar(x); x; end
|
|
|
|
def foo(...); bar(...); end
|
|
|
|
foo('ok')
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
def bar(x); x; end
|
|
|
|
def foo(z, ...); bar(...); end
|
|
|
|
foo(1, 'ok')
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
def bar(x, y); x; end
|
|
|
|
def foo(...); bar("ok", ...); end
|
|
|
|
foo(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
def bar(x); x; end
|
|
|
|
def foo(...); 1.times { return bar(...) }; end
|
|
|
|
foo("ok")
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
def bar(x); x; end
|
|
|
|
def foo(...); x = nil; 1.times { x = bar(...) }; x; end
|
|
|
|
foo("ok")
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
def bar(x); yield; end
|
|
|
|
def foo(...); bar(...); end
|
|
|
|
foo(1) { "ok" }
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
def baz(x); x; end
|
|
|
|
def bar(...); baz(...); end
|
|
|
|
def foo(...); bar(...); end
|
|
|
|
foo("ok")
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal '[1, 2, 3, 4]', %q{
|
|
|
|
def baz(a, b, c, d); [a, b, c, d]; end
|
|
|
|
def bar(...); baz(1, ...); end
|
|
|
|
def foo(...); bar(2, ...); end
|
|
|
|
foo(3, 4)
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
class Foo; def self.foo(x); x; end; end
|
|
|
|
class Bar < Foo; def self.foo(...); super; end; end
|
|
|
|
Bar.foo('ok')
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
class Foo; def self.foo(x); x; end; end
|
|
|
|
class Bar < Foo; def self.foo(...); super(...); end; end
|
|
|
|
Bar.foo('ok')
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
class Foo; def self.foo(x, y); x + y; end; end
|
|
|
|
class Bar < Foo; def self.foo(...); super("o", ...); end; end
|
|
|
|
Bar.foo('k')
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
def bar(a); a; end
|
|
|
|
def foo(...); lambda { bar(...) }; end
|
|
|
|
foo("ok").call
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
class Foo; def self.foo(x, y); x + y; end; end
|
|
|
|
class Bar < Foo; def self.y(&b); b; end; def self.foo(...); y { super("o", ...) }; end; end
|
|
|
|
Bar.foo('k').call
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
def baz(n); n; end
|
|
|
|
def foo(...); bar = baz(...); lambda { lambda { bar } }; end
|
|
|
|
foo("ok").call.call
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
class A; def self.foo(...); new(...); end; attr_reader :b; def initialize(a, b:"ng"); @a = a; @b = b; end end
|
|
|
|
A.foo(1).b
|
|
|
|
A.foo(1, b: "ok").b
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
class A; def initialize; @a = ["ok"]; end; def first(...); @a.first(...); end; end
|
|
|
|
def call x; x.first; end
|
|
|
|
def call1 x; x.first(1); end
|
|
|
|
call(A.new)
|
|
|
|
call1(A.new).first
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
class A; def foo; yield("o"); end; end
|
|
|
|
class B < A; def foo(...); super { |x| yield(x + "k") }; end; end
|
|
|
|
B.new.foo { |x| x }
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal "[1, 2, 3, 4]", %q{
|
|
|
|
def foo(*b) = b
|
|
|
|
|
|
|
|
def forward(...)
|
|
|
|
splat = [1,2,3]
|
|
|
|
foo(*splat, ...)
|
|
|
|
end
|
|
|
|
|
|
|
|
forward(4)
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal "[1, 2, 3, 4]", %q{
|
|
|
|
class A
|
|
|
|
def foo(*b) = b
|
|
|
|
end
|
|
|
|
|
|
|
|
class B < A
|
|
|
|
def foo(...)
|
|
|
|
splat = [1,2,3]
|
|
|
|
super(*splat, ...)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
B.new.foo(4)
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
class A; attr_reader :iv; def initialize(...) = @iv = "ok"; end
|
|
|
|
A.new("foo", bar: []).iv
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
2024-06-20 17:56:03 +03:00
|
|
|
def foo(a, b) = a + b
|
|
|
|
def bar(...) = foo(...)
|
|
|
|
bar(1, 2)
|
|
|
|
bar(1, 2)
|
|
|
|
begin
|
|
|
|
bar(1, 2, 3)
|
|
|
|
"ng"
|
|
|
|
rescue ArgumentError
|
|
|
|
"ok"
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
class C
|
|
|
|
def foo(...) = :ok
|
|
|
|
def bar(...) = __send__(:foo, ...)
|
|
|
|
end
|
|
|
|
|
|
|
|
C.new.bar
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
class C
|
|
|
|
def method_missing(...) = :ok
|
|
|
|
def foo(...) = xyzzy(...)
|
|
|
|
end
|
|
|
|
|
|
|
|
C.new.foo
|
Optimized forwarding callers and callees
This patch optimizes forwarding callers and callees. It only optimizes methods that only take `...` as their parameter, and then pass `...` to other calls.
Calls it optimizes look like this:
```ruby
def bar(a) = a
def foo(...) = bar(...) # optimized
foo(123)
```
```ruby
def bar(a) = a
def foo(...) = bar(1, 2, ...) # optimized
foo(123)
```
```ruby
def bar(*a) = a
def foo(...)
list = [1, 2]
bar(*list, ...) # optimized
end
foo(123)
```
All variants of the above but using `super` are also optimized, including a bare super like this:
```ruby
def foo(...)
super
end
```
This patch eliminates intermediate allocations made when calling methods that accept `...`.
We can observe allocation elimination like this:
```ruby
def m
x = GC.stat(:total_allocated_objects)
yield
GC.stat(:total_allocated_objects) - x
end
def bar(a) = a
def foo(...) = bar(...)
def test
m { foo(123) }
end
test
p test # allocates 1 object on master, but 0 objects with this patch
```
```ruby
def bar(a, b:) = a + b
def foo(...) = bar(...)
def test
m { foo(1, b: 2) }
end
test
p test # allocates 2 objects on master, but 0 objects with this patch
```
How does it work?
-----------------
This patch works by using a dynamic stack size when passing forwarded parameters to callees.
The caller's info object (known as the "CI") contains the stack size of the
parameters, so we pass the CI object itself as a parameter to the callee.
When forwarding parameters, the forwarding ISeq uses the caller's CI to determine how much stack to copy, then copies the caller's stack before calling the callee.
The CI at the forwarded call site is adjusted using information from the caller's CI.
I think this description is kind of confusing, so let's walk through an example with code.
```ruby
def delegatee(a, b) = a + b
def delegator(...)
delegatee(...) # CI2 (FORWARDING)
end
def caller
delegator(1, 2) # CI1 (argc: 2)
end
```
Before we call the delegator method, the stack looks like this:
```
Executing Line | Code | Stack
---------------+---------------------------------------+--------
1| def delegatee(a, b) = a + b | self
2| | 1
3| def delegator(...) | 2
4| # |
5| delegatee(...) # CI2 (FORWARDING) |
6| end |
7| |
8| def caller |
-> 9| delegator(1, 2) # CI1 (argc: 2) |
10| end |
```
The ISeq for `delegator` is tagged as "forwardable", so when `caller` calls in
to `delegator`, it writes `CI1` on to the stack as a local variable for the
`delegator` method. The `delegator` method has a special local called `...`
that holds the caller's CI object.
Here is the ISeq disasm fo `delegator`:
```
== disasm: #<ISeq:delegator@-e:1 (1,0)-(1,39)>
local table (size: 1, argc: 0 [opts: 0, rest: -1, post: 0, block: -1, kw: -1@-1, kwrest: -1])
[ 1] "..."@0
0000 putself ( 1)[LiCa]
0001 getlocal_WC_0 "..."@0
0003 send <calldata!mid:delegatee, argc:0, FCALL|FORWARDING>, nil
0006 leave [Re]
```
The local called `...` will contain the caller's CI: CI1.
Here is the stack when we enter `delegator`:
```
Executing Line | Code | Stack
---------------+---------------------------------------+--------
1| def delegatee(a, b) = a + b | self
2| | 1
3| def delegator(...) | 2
-> 4| # | CI1 (argc: 2)
5| delegatee(...) # CI2 (FORWARDING) | cref_or_me
6| end | specval
7| | type
8| def caller |
9| delegator(1, 2) # CI1 (argc: 2) |
10| end |
```
The CI at `delegatee` on line 5 is tagged as "FORWARDING", so it knows to
memcopy the caller's stack before calling `delegatee`. In this case, it will
memcopy self, 1, and 2 to the stack before calling `delegatee`. It knows how much
memory to copy from the caller because `CI1` contains stack size information
(argc: 2).
Before executing the `send` instruction, we push `...` on the stack. The
`send` instruction pops `...`, and because it is tagged with `FORWARDING`, it
knows to memcopy (using the information in the CI it just popped):
```
== disasm: #<ISeq:delegator@-e:1 (1,0)-(1,39)>
local table (size: 1, argc: 0 [opts: 0, rest: -1, post: 0, block: -1, kw: -1@-1, kwrest: -1])
[ 1] "..."@0
0000 putself ( 1)[LiCa]
0001 getlocal_WC_0 "..."@0
0003 send <calldata!mid:delegatee, argc:0, FCALL|FORWARDING>, nil
0006 leave [Re]
```
Instruction 001 puts the caller's CI on the stack. `send` is tagged with
FORWARDING, so it reads the CI and _copies_ the callers stack to this stack:
```
Executing Line | Code | Stack
---------------+---------------------------------------+--------
1| def delegatee(a, b) = a + b | self
2| | 1
3| def delegator(...) | 2
4| # | CI1 (argc: 2)
-> 5| delegatee(...) # CI2 (FORWARDING) | cref_or_me
6| end | specval
7| | type
8| def caller | self
9| delegator(1, 2) # CI1 (argc: 2) | 1
10| end | 2
```
The "FORWARDING" call site combines information from CI1 with CI2 in order
to support passing other values in addition to the `...` value, as well as
perfectly forward splat args, kwargs, etc.
Since we're able to copy the stack from `caller` in to `delegator`'s stack, we
can avoid allocating objects.
I want to do this to eliminate object allocations for delegate methods.
My long term goal is to implement `Class#new` in Ruby and it uses `...`.
I was able to implement `Class#new` in Ruby
[here](https://github.com/ruby/ruby/pull/9289).
If we adopt the technique in this patch, then we can optimize allocating
objects that take keyword parameters for `initialize`.
For example, this code will allocate 2 objects: one for `SomeObject`, and one
for the kwargs:
```ruby
SomeObject.new(foo: 1)
```
If we combine this technique, plus implement `Class#new` in Ruby, then we can
reduce allocations for this common operation.
Co-Authored-By: John Hawthorn <john@hawthorn.email>
Co-Authored-By: Alan Wu <XrXr@users.noreply.github.com>
2024-04-15 20:48:53 +03:00
|
|
|
}
|
2024-07-02 20:31:15 +03:00
|
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
class C
|
|
|
|
def initialize(a)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def foo(...)
|
|
|
|
C.new(...)
|
|
|
|
:ok
|
|
|
|
end
|
|
|
|
|
|
|
|
foo(*["bar"])
|
|
|
|
foo("baz")
|
|
|
|
}
|