2021-03-09 14:01:16 -05:00
|
|
|
# BOP redefined methods work when JIT compiled
|
|
|
|
assert_equal 'false', %q{
|
|
|
|
def less_than x
|
|
|
|
x < 10
|
|
|
|
end
|
|
|
|
|
|
|
|
class Integer
|
|
|
|
def < x
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
less_than 2
|
|
|
|
less_than 2
|
|
|
|
less_than 2
|
|
|
|
}
|
|
|
|
|
|
|
|
# BOP redefinition works on Integer#<
|
|
|
|
assert_equal 'false', %q{
|
|
|
|
def less_than x
|
|
|
|
x < 10
|
|
|
|
end
|
|
|
|
|
|
|
|
less_than 2
|
|
|
|
less_than 2
|
|
|
|
|
|
|
|
class Integer
|
|
|
|
def < x
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
less_than 2
|
|
|
|
}
|
|
|
|
|
2021-02-10 19:57:06 -05:00
|
|
|
# Putobject, less-than operator, fixnums
|
|
|
|
assert_equal '2', %q{
|
|
|
|
def check_index(index)
|
|
|
|
if 0x40000000 < index
|
|
|
|
raise "wat? #{index}"
|
|
|
|
end
|
|
|
|
index
|
|
|
|
end
|
|
|
|
check_index 2
|
|
|
|
check_index 2
|
|
|
|
}
|
|
|
|
|
2021-02-12 14:35:57 -05:00
|
|
|
# foo leaves a temp on the stack before the call
|
|
|
|
assert_equal '6', %q{
|
|
|
|
def bar
|
|
|
|
return 5
|
2021-02-03 17:39:38 -05:00
|
|
|
end
|
|
|
|
|
2021-02-12 14:35:57 -05:00
|
|
|
def foo
|
|
|
|
return 1 + bar
|
2021-02-03 17:39:38 -05:00
|
|
|
end
|
|
|
|
|
2021-02-12 14:35:57 -05:00
|
|
|
foo()
|
|
|
|
retval = foo()
|
2021-02-05 12:18:55 -05:00
|
|
|
}
|
|
|
|
|
2021-02-12 14:35:57 -05:00
|
|
|
# Method with one arguments
|
2021-02-05 12:18:55 -05:00
|
|
|
# foo leaves a temp on the stack before the call
|
2021-02-12 14:35:57 -05:00
|
|
|
assert_equal '7', %q{
|
|
|
|
def bar(a)
|
|
|
|
return a + 1
|
2021-02-05 12:18:55 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def foo
|
2021-02-12 14:35:57 -05:00
|
|
|
return 1 + bar(5)
|
2021-02-05 12:18:55 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
foo()
|
|
|
|
retval = foo()
|
|
|
|
}
|
|
|
|
|
2021-02-12 14:35:57 -05:00
|
|
|
# Method with two arguments
|
2021-02-09 17:34:02 -05:00
|
|
|
# foo leaves a temp on the stack before the call
|
|
|
|
assert_equal '0', %q{
|
|
|
|
def bar(a, b)
|
|
|
|
return a - b
|
|
|
|
end
|
|
|
|
|
|
|
|
def foo
|
|
|
|
return 1 + bar(1, 2)
|
|
|
|
end
|
|
|
|
|
|
|
|
foo()
|
|
|
|
retval = foo()
|
|
|
|
}
|
|
|
|
|
2021-04-15 14:16:55 -04:00
|
|
|
# Passing argument types to callees
|
|
|
|
assert_equal '8.5', %q{
|
|
|
|
def foo(x, y)
|
|
|
|
x + y
|
|
|
|
end
|
|
|
|
|
|
|
|
def bar
|
|
|
|
foo(7, 1.5)
|
|
|
|
end
|
|
|
|
|
|
|
|
bar
|
|
|
|
bar
|
|
|
|
}
|
|
|
|
|
2021-02-09 17:34:02 -05:00
|
|
|
# Recursive Ruby-to-Ruby calls
|
|
|
|
assert_equal '21', %q{
|
|
|
|
def fib(n)
|
|
|
|
if n < 2
|
|
|
|
return n
|
|
|
|
end
|
|
|
|
|
|
|
|
return fib(n-1) + fib(n-2)
|
|
|
|
end
|
|
|
|
|
|
|
|
r = fib(8)
|
|
|
|
}
|
|
|
|
|
2021-02-05 12:18:55 -05:00
|
|
|
# Ruby-to-Ruby call and C call
|
|
|
|
assert_normal_exit %q{
|
|
|
|
def bar
|
|
|
|
puts('hi!')
|
|
|
|
end
|
|
|
|
|
|
|
|
def foo
|
|
|
|
bar
|
|
|
|
end
|
|
|
|
|
|
|
|
foo()
|
|
|
|
foo()
|
|
|
|
}
|
|
|
|
|
2021-02-25 12:09:29 -05:00
|
|
|
# The hash method is a C function and uses the self argument
|
|
|
|
assert_equal 'true', %q{
|
|
|
|
def lehashself
|
|
|
|
hash
|
|
|
|
end
|
|
|
|
|
|
|
|
a = lehashself
|
|
|
|
b = lehashself
|
|
|
|
a == b
|
|
|
|
}
|
|
|
|
|
2021-02-12 14:35:57 -05:00
|
|
|
# Method redefinition (code invalidation) test
|
|
|
|
assert_equal '1', %q{
|
|
|
|
def ret1
|
|
|
|
return 1
|
|
|
|
end
|
|
|
|
|
|
|
|
klass = Class.new do
|
|
|
|
def alias_then_hash(klass, method_to_redefine)
|
|
|
|
# Redefine the method to be ret1
|
|
|
|
klass.alias_method(method_to_redefine, :ret1)
|
|
|
|
hash
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
instance = klass.new
|
|
|
|
|
|
|
|
i = 0
|
|
|
|
while i < 12
|
|
|
|
if i < 11
|
|
|
|
# Redefine the bar method
|
|
|
|
instance.alias_then_hash(klass, :bar)
|
|
|
|
else
|
|
|
|
# Redefine the hash method to be ret1
|
|
|
|
retval = instance.alias_then_hash(klass, :hash)
|
|
|
|
end
|
|
|
|
i += 1
|
|
|
|
end
|
|
|
|
|
|
|
|
retval
|
|
|
|
}
|
|
|
|
|
2021-04-27 16:27:56 -04:00
|
|
|
# Code invalidation and opt_getinlinecache
|
|
|
|
assert_normal_exit %q{
|
|
|
|
class Foo; end
|
|
|
|
|
|
|
|
# Uses the class constant Foo
|
|
|
|
def use_constant(arg)
|
|
|
|
[Foo.new, arg]
|
|
|
|
end
|
|
|
|
|
|
|
|
def propagate_type
|
|
|
|
i = Array.new
|
|
|
|
i.itself # make it remember that i is on-heap
|
|
|
|
use_constant(i)
|
|
|
|
end
|
|
|
|
|
|
|
|
propagate_type
|
|
|
|
propagate_type
|
|
|
|
use_constant(Foo.new)
|
|
|
|
class Jo; end # bump global constant state
|
|
|
|
use_constant(3)
|
|
|
|
}
|
|
|
|
|
2021-03-11 14:15:01 -05:00
|
|
|
# Method redefinition (code invalidation) and GC
|
2021-02-12 14:35:57 -05:00
|
|
|
assert_equal '7', %q{
|
|
|
|
def bar()
|
|
|
|
return 5
|
|
|
|
end
|
|
|
|
|
|
|
|
def foo()
|
|
|
|
bar()
|
|
|
|
end
|
|
|
|
|
|
|
|
foo()
|
|
|
|
foo()
|
|
|
|
|
|
|
|
def bar()
|
|
|
|
return 7
|
|
|
|
end
|
|
|
|
|
|
|
|
4.times { GC.start }
|
|
|
|
|
|
|
|
foo()
|
|
|
|
foo()
|
|
|
|
}
|
|
|
|
|
|
|
|
# Method redefinition with two block versions
|
|
|
|
assert_equal '7', %q{
|
|
|
|
def bar()
|
|
|
|
return 5
|
|
|
|
end
|
|
|
|
|
|
|
|
def foo(n)
|
|
|
|
return ((n < 5)? 5:false), bar()
|
|
|
|
end
|
|
|
|
|
|
|
|
foo(4)
|
|
|
|
foo(4)
|
|
|
|
foo(10)
|
|
|
|
foo(10)
|
|
|
|
|
|
|
|
def bar()
|
|
|
|
return 7
|
|
|
|
end
|
|
|
|
|
|
|
|
4.times { GC.start }
|
|
|
|
|
|
|
|
foo(4)
|
|
|
|
foo(4)[1]
|
|
|
|
}
|
|
|
|
|
2021-02-05 12:18:55 -05:00
|
|
|
# Test for GC safety. Don't invalidate dead iseqs.
|
|
|
|
assert_normal_exit %q{
|
|
|
|
Class.new do
|
|
|
|
def foo
|
|
|
|
itself
|
|
|
|
end
|
|
|
|
|
|
|
|
new.foo
|
2021-02-19 15:44:53 -05:00
|
|
|
new.foo
|
|
|
|
new.foo
|
2021-02-05 12:18:55 -05:00
|
|
|
new.foo
|
|
|
|
end
|
|
|
|
|
|
|
|
4.times { GC.start }
|
|
|
|
def itself
|
|
|
|
self
|
|
|
|
end
|
|
|
|
}
|
2021-02-16 15:28:21 -05:00
|
|
|
|
2021-04-21 16:01:03 -04:00
|
|
|
# test setinstancevariable on extended objects
|
|
|
|
assert_equal '1', %q{
|
|
|
|
class Extended
|
|
|
|
attr_reader :one
|
|
|
|
|
|
|
|
def write_many
|
|
|
|
@a = 1
|
|
|
|
@b = 2
|
|
|
|
@c = 3
|
|
|
|
@d = 4
|
|
|
|
@one = 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
foo = Extended.new
|
|
|
|
foo.write_many
|
|
|
|
foo.write_many
|
|
|
|
foo.write_many
|
|
|
|
}
|
|
|
|
|
|
|
|
# test setinstancevariable on embedded objects
|
|
|
|
assert_equal '1', %q{
|
|
|
|
class Embedded
|
|
|
|
attr_reader :one
|
|
|
|
|
|
|
|
def write_one
|
|
|
|
@one = 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
foo = Embedded.new
|
|
|
|
foo.write_one
|
|
|
|
foo.write_one
|
|
|
|
foo.write_one
|
|
|
|
}
|
|
|
|
|
|
|
|
# test setinstancevariable after extension
|
|
|
|
assert_equal '[10, 11, 12, 13, 1]', %q{
|
|
|
|
class WillExtend
|
|
|
|
attr_reader :one
|
|
|
|
|
|
|
|
def make_extended
|
|
|
|
@foo1 = 10
|
|
|
|
@foo2 = 11
|
|
|
|
@foo3 = 12
|
|
|
|
@foo4 = 13
|
|
|
|
end
|
|
|
|
|
|
|
|
def write_one
|
|
|
|
@one = 1
|
|
|
|
end
|
|
|
|
|
|
|
|
def read_all
|
|
|
|
[@foo1, @foo2, @foo3, @foo4, @one]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
foo = WillExtend.new
|
|
|
|
foo.write_one
|
|
|
|
foo.write_one
|
|
|
|
foo.make_extended
|
|
|
|
foo.write_one
|
|
|
|
foo.read_all
|
|
|
|
}
|
|
|
|
|
|
|
|
# test setinstancevariable on frozen object
|
|
|
|
assert_equal 'object was not modified', %q{
|
|
|
|
class WillFreeze
|
|
|
|
def write
|
|
|
|
@ivar = 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
wf = WillFreeze.new
|
|
|
|
wf.write
|
|
|
|
wf.write
|
|
|
|
wf.freeze
|
|
|
|
|
|
|
|
begin
|
|
|
|
wf.write
|
|
|
|
rescue FrozenError
|
|
|
|
"object was not modified"
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
2021-03-05 15:45:44 -05:00
|
|
|
# Test getinstancevariable and inline caches
|
|
|
|
assert_equal '6', %q{
|
|
|
|
class Foo
|
|
|
|
def initialize
|
|
|
|
@x1 = 1
|
|
|
|
@x2 = 1
|
|
|
|
@x2 = 1
|
|
|
|
@x3 = 1
|
|
|
|
@x4 = 3
|
|
|
|
end
|
|
|
|
|
|
|
|
def bar
|
|
|
|
x = 1
|
|
|
|
@x4 + @x4
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
f = Foo.new
|
|
|
|
f.bar
|
|
|
|
f.bar
|
|
|
|
}
|
|
|
|
|
2021-02-16 15:28:21 -05:00
|
|
|
# Test that getinstancevariable codegen checks for extended table size
|
|
|
|
assert_equal "nil\n", %q{
|
|
|
|
class A
|
|
|
|
def read
|
|
|
|
@ins1000
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
ins = A.new
|
|
|
|
other = A.new
|
|
|
|
10.times { other.instance_variable_set(:"@otr#{_1}", 'value') }
|
|
|
|
1001.times { ins.instance_variable_set(:"@ins#{_1}", 'value') }
|
|
|
|
|
|
|
|
ins.read
|
|
|
|
ins.read
|
|
|
|
ins.read
|
|
|
|
|
|
|
|
p other.read
|
|
|
|
}
|
2021-02-19 11:20:55 -05:00
|
|
|
|
|
|
|
# Test that opt_aref checks the class of the receiver
|
2021-02-19 15:44:53 -05:00
|
|
|
assert_equal 'special', %q{
|
2021-02-19 11:20:55 -05:00
|
|
|
def foo(array)
|
|
|
|
array[30]
|
|
|
|
end
|
|
|
|
|
2021-02-19 15:44:53 -05:00
|
|
|
foo([])
|
|
|
|
foo([])
|
2021-02-19 11:20:55 -05:00
|
|
|
|
|
|
|
special = []
|
|
|
|
def special.[](idx)
|
2021-02-19 15:44:53 -05:00
|
|
|
'special'
|
2021-02-19 11:20:55 -05:00
|
|
|
end
|
|
|
|
|
2021-02-19 15:44:53 -05:00
|
|
|
foo(special)
|
2021-02-19 11:20:55 -05:00
|
|
|
}
|
2021-02-19 15:03:12 -05:00
|
|
|
|
|
|
|
# Test that object references in generated code get marked and moved
|
|
|
|
assert_equal "good", %q{
|
|
|
|
def bar
|
|
|
|
"good"
|
|
|
|
end
|
|
|
|
|
|
|
|
def foo
|
|
|
|
bar
|
|
|
|
end
|
|
|
|
|
|
|
|
foo
|
|
|
|
foo
|
|
|
|
|
|
|
|
GC.verify_compaction_references(double_heap: true, toward: :empty)
|
|
|
|
|
|
|
|
foo
|
|
|
|
}
|
2021-03-12 12:22:19 -05:00
|
|
|
|
|
|
|
# Test polymorphic getinstancevariable. T_OBJECT -> T_STRING
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
@hello = @h1 = @h2 = @h3 = @h4 = 'ok'
|
|
|
|
str = ""
|
|
|
|
str.instance_variable_set(:@hello, 'ok')
|
|
|
|
|
|
|
|
public def get
|
|
|
|
@hello
|
|
|
|
end
|
|
|
|
|
|
|
|
get
|
|
|
|
get
|
|
|
|
str.get
|
|
|
|
str.get
|
|
|
|
}
|
|
|
|
|
|
|
|
# Test polymorphic getinstancevariable, two different classes
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
class Embedded
|
|
|
|
def initialize
|
|
|
|
@ivar = 0
|
|
|
|
end
|
|
|
|
|
|
|
|
def get
|
|
|
|
@ivar
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Extended < Embedded
|
|
|
|
def initialize
|
|
|
|
@v1 = @v2 = @v3 = @v4 = @ivar = 'ok'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
embed = Embedded.new
|
|
|
|
extend = Extended.new
|
|
|
|
|
|
|
|
embed.get
|
|
|
|
embed.get
|
|
|
|
extend.get
|
|
|
|
extend.get
|
|
|
|
}
|
|
|
|
|
|
|
|
# Test megamorphic getinstancevariable
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
parent = Class.new do
|
|
|
|
def initialize
|
|
|
|
@hello = @h1 = @h2 = @h3 = @h4 = 'ok'
|
|
|
|
end
|
|
|
|
|
|
|
|
def get
|
|
|
|
@hello
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
subclasses = 300.times.map { Class.new(parent) }
|
|
|
|
subclasses.each { _1.new.get }
|
|
|
|
parent.new.get
|
|
|
|
}
|
2021-03-11 14:46:19 -05:00
|
|
|
|
|
|
|
# Test polymorphic opt_aref. array -> hash
|
|
|
|
assert_equal '[42, :key]', %q{
|
|
|
|
def index(obj, idx)
|
|
|
|
obj[idx]
|
|
|
|
end
|
|
|
|
|
|
|
|
index([], 0) # get over compilation threshold
|
|
|
|
|
|
|
|
[
|
|
|
|
index([42], 0),
|
|
|
|
index({0=>:key}, 0),
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
# Test polymorphic opt_aref. hash -> array -> custom class
|
|
|
|
assert_equal '[nil, nil, :custom]', %q{
|
|
|
|
def index(obj, idx)
|
|
|
|
obj[idx]
|
|
|
|
end
|
|
|
|
|
|
|
|
custom = Object.new
|
|
|
|
def custom.[](_idx)
|
|
|
|
:custom
|
|
|
|
end
|
|
|
|
|
|
|
|
index({}, 0) # get over compilation threshold
|
|
|
|
|
|
|
|
[
|
|
|
|
index({}, 0),
|
|
|
|
index([], 0),
|
|
|
|
index(custom, 0)
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
# Test polymorphic opt_aref. array -> custom class
|
|
|
|
assert_equal '[42, :custom]', %q{
|
|
|
|
def index(obj, idx)
|
|
|
|
obj[idx]
|
|
|
|
end
|
|
|
|
|
|
|
|
custom = Object.new
|
|
|
|
def custom.[](_idx)
|
|
|
|
:custom
|
|
|
|
end
|
|
|
|
|
|
|
|
index([], 0) # get over compilation threshold
|
|
|
|
|
|
|
|
[
|
|
|
|
index([42], 0),
|
|
|
|
index(custom, 0)
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
# Test custom hash method with opt_aref
|
|
|
|
assert_equal '[nil, :ok]', %q{
|
|
|
|
def index(obj, idx)
|
|
|
|
obj[idx]
|
|
|
|
end
|
|
|
|
|
|
|
|
custom = Object.new
|
|
|
|
def custom.hash
|
|
|
|
42
|
|
|
|
end
|
|
|
|
|
|
|
|
h = {custom => :ok}
|
|
|
|
|
|
|
|
[
|
|
|
|
index(h, 0),
|
|
|
|
index(h, custom)
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
# Test default value block for Hash with opt_aref
|
|
|
|
assert_equal '[42, :default]', %q{
|
|
|
|
def index(obj, idx)
|
|
|
|
obj[idx]
|
|
|
|
end
|
|
|
|
|
|
|
|
h = Hash.new { :default }
|
|
|
|
h[0] = 42
|
|
|
|
|
|
|
|
[
|
|
|
|
index(h, 0),
|
|
|
|
index(h, 1)
|
|
|
|
]
|
|
|
|
}
|
2021-03-22 20:12:34 -04:00
|
|
|
|
|
|
|
# A regression test for making sure cfp->sp is proper when
|
|
|
|
# hitting stubs. See :stub-sp-flush:
|
|
|
|
assert_equal 'ok', %q{
|
|
|
|
class D
|
|
|
|
def foo
|
|
|
|
Object.new
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
GC.stress = true
|
|
|
|
10.times do
|
|
|
|
D.new.foo
|
|
|
|
# ^
|
|
|
|
# This hits a stub with sp_offset > 0
|
|
|
|
end
|
|
|
|
|
|
|
|
:ok
|
|
|
|
}
|
|
|
|
|
|
|
|
# Test polymorphic callsite, cfunc -> iseq
|
|
|
|
assert_equal '[Cfunc, Iseq]', %q{
|
|
|
|
public def call_itself
|
|
|
|
itself # the polymorphic callsite
|
|
|
|
end
|
|
|
|
|
|
|
|
class Cfunc; end
|
|
|
|
|
|
|
|
class Iseq
|
|
|
|
def itself
|
|
|
|
self
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
call_itself # cross threshold
|
|
|
|
|
|
|
|
[Cfunc.call_itself, Iseq.call_itself]
|
|
|
|
}
|
|
|
|
|
|
|
|
# Test polymorphic callsite, iseq -> cfunc
|
|
|
|
assert_equal '[Iseq, Cfunc]', %q{
|
|
|
|
public def call_itself
|
|
|
|
itself # the polymorphic callsite
|
|
|
|
end
|
|
|
|
|
|
|
|
class Cfunc; end
|
|
|
|
|
|
|
|
class Iseq
|
|
|
|
def itself
|
|
|
|
self
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
call_itself # cross threshold
|
|
|
|
|
|
|
|
[Iseq.call_itself, Cfunc.call_itself]
|
|
|
|
}
|
2021-04-01 14:31:57 -04:00
|
|
|
|
|
|
|
# attr_reader method
|
|
|
|
assert_equal '[100, 299]', %q{
|
|
|
|
class A
|
|
|
|
attr_reader :foo
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
@foo = 100
|
|
|
|
end
|
|
|
|
|
|
|
|
# Make it extended
|
|
|
|
def fill!
|
|
|
|
@bar = @jojo = @as = @sdfsdf = @foo = 299
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def bar(ins)
|
|
|
|
ins.foo
|
|
|
|
end
|
|
|
|
|
|
|
|
ins = A.new
|
|
|
|
oth = A.new
|
|
|
|
oth.fill!
|
|
|
|
|
|
|
|
bar(ins)
|
|
|
|
bar(oth)
|
|
|
|
|
|
|
|
[bar(ins), bar(oth)]
|
|
|
|
}
|
|
|
|
|
|
|
|
# get ivar on String
|
|
|
|
assert_equal '[nil, nil, 42, 42]', %q{
|
|
|
|
# @foo to exercise the getinstancevariable instruction
|
|
|
|
public def get_foo
|
|
|
|
@foo
|
|
|
|
end
|
|
|
|
|
|
|
|
get_foo
|
|
|
|
get_foo # compile it for the top level object
|
|
|
|
|
|
|
|
class String
|
|
|
|
attr_reader :foo
|
|
|
|
end
|
|
|
|
|
|
|
|
def run
|
|
|
|
str = String.new
|
|
|
|
|
|
|
|
getter = str.foo
|
|
|
|
insn = str.get_foo
|
|
|
|
|
|
|
|
str.instance_variable_set(:@foo, 42)
|
|
|
|
|
|
|
|
[getter, insn, str.foo, str.get_foo]
|
|
|
|
end
|
|
|
|
|
|
|
|
run
|
|
|
|
run
|
|
|
|
}
|
|
|
|
|
|
|
|
# splatting an empty array on a getter
|
|
|
|
assert_equal '42', %q{
|
|
|
|
@foo = 42
|
|
|
|
module Kernel
|
|
|
|
attr_reader :foo
|
|
|
|
end
|
|
|
|
|
|
|
|
def run
|
|
|
|
foo(*[])
|
|
|
|
end
|
|
|
|
|
|
|
|
run
|
|
|
|
run
|
|
|
|
}
|
2021-04-09 19:08:23 -04:00
|
|
|
|
|
|
|
# getinstancevariable on Symbol
|
|
|
|
assert_equal '[nil, nil]', %q{
|
|
|
|
# @foo to exercise the getinstancevariable instruction
|
|
|
|
public def get_foo
|
|
|
|
@foo
|
|
|
|
end
|
|
|
|
|
|
|
|
dyn_sym = ("a" + "b").to_sym
|
|
|
|
sym = :static
|
|
|
|
|
|
|
|
# compile get_foo
|
|
|
|
dyn_sym.get_foo
|
|
|
|
dyn_sym.get_foo
|
|
|
|
|
|
|
|
[dyn_sym.get_foo, sym.get_foo]
|
|
|
|
}
|
|
|
|
|
|
|
|
# attr_reader on Symbol
|
|
|
|
assert_equal '[nil, nil]', %q{
|
|
|
|
class Symbol
|
|
|
|
attr_reader :foo
|
|
|
|
end
|
|
|
|
|
|
|
|
public def get_foo
|
|
|
|
foo
|
|
|
|
end
|
|
|
|
|
|
|
|
dyn_sym = ("a" + "b").to_sym
|
|
|
|
sym = :static
|
|
|
|
|
|
|
|
# compile get_foo
|
|
|
|
dyn_sym.get_foo
|
|
|
|
dyn_sym.get_foo
|
|
|
|
|
|
|
|
[dyn_sym.get_foo, sym.get_foo]
|
|
|
|
}
|
2021-04-28 12:59:26 -04:00
|
|
|
|
|
|
|
# passing too few arguments to method with optional parameters
|
|
|
|
assert_equal 'raised', %q{
|
|
|
|
def opt(a, b = 0)
|
|
|
|
end
|
|
|
|
|
|
|
|
def use
|
|
|
|
opt
|
|
|
|
end
|
|
|
|
|
|
|
|
use rescue nil
|
|
|
|
begin
|
|
|
|
use
|
|
|
|
:ng
|
|
|
|
rescue ArgumentError
|
|
|
|
:raised
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
|
|
|
# passing too many arguments to method with optional parameters
|
|
|
|
assert_equal 'raised', %q{
|
|
|
|
def opt(a, b = 0)
|
|
|
|
end
|
|
|
|
|
|
|
|
def use
|
|
|
|
opt(1, 2, 3, 4)
|
|
|
|
end
|
|
|
|
|
|
|
|
use rescue nil
|
|
|
|
begin
|
|
|
|
use
|
|
|
|
:ng
|
|
|
|
rescue ArgumentError
|
|
|
|
:raised
|
|
|
|
end
|
|
|
|
}
|