rubyx/lib/vool/send_statement.rb
Torsten Ruger 443fd13980 adds super
with and without args
current thinking is to fill the name of the method later as we carry no
context currently, but this may change
2017-04-02 18:42:52 +03:00

10 lines
179 B
Ruby

module Vool
class SendStatement < Statement
attr_accessor :name , :receiver , :arguments
def initialize(name)
@name = name
@arguments = []
end
end
end