rubyx/lib/vool/method_statement.rb

11 lines
190 B
Ruby
Raw Normal View History

2017-04-01 15:27:32 +02:00
module Vool
class MethodStatement
attr_reader :name, :args , :body
def initialize( name , args , body)
@name , @args , @body = name , args , (body || [])
end
end
end