rubyx/lib/ruby/send_statement.rb
Torsten Ruger b6c85cd4a4 callable as base for yield and send
more yield tests
2018-07-21 14:34:39 +03:00

9 lines
130 B
Ruby

module Ruby
class SendStatement < Callable
def to_s
"#{receiver}.#{name}(#{arguments.join(', ')})"
end
end
end