b6c85cd4a4
more yield tests
9 lines
130 B
Ruby
9 lines
130 B
Ruby
module Ruby
|
|
|
|
class SendStatement < Callable
|
|
def to_s
|
|
"#{receiver}.#{name}(#{arguments.join(', ')})"
|
|
end
|
|
end
|
|
end
|