198a43cc8d
Callable is the Method, whereas here we call the method
9 lines
135 B
Ruby
9 lines
135 B
Ruby
module Ruby
|
|
|
|
class SendStatement < CallStatement
|
|
def to_s
|
|
"#{receiver}.#{name}(#{arguments.join(', ')})"
|
|
end
|
|
end
|
|
end
|