rubyx/lib/vool/send_statement.rb

10 lines
179 B
Ruby
Raw Normal View History

2017-04-01 21:28:57 +03:00
module Vool
2017-04-02 12:59:07 +03:00
class SendStatement < Statement
2017-04-01 21:28:57 +03:00
attr_accessor :name , :receiver , :arguments
2017-04-02 18:25:30 +03:00
def initialize(name)
@name = name
@arguments = []
2017-04-02 18:25:30 +03:00
end
2017-04-01 21:28:57 +03:00
end
end