rubyx/lib/melon/compiler/ruby_method.rb

13 lines
258 B
Ruby
Raw Normal View History

module Melon
class RubyMethod
attr_reader :name , :args_type , :locals_type , :body
def initialize(name , args_type , locals_type , body )
@name , @args_type , @locals_type , @body = name , args_type, locals_type , body
end
end
end