rubyx/lib/vool/method_statement.rb
2017-04-01 16:27:32 +03:00

11 lines
190 B
Ruby

module Vool
class MethodStatement
attr_reader :name, :args , :body
def initialize( name , args , body)
@name , @args , @body = name , args , (body || [])
end
end
end