rubyx/lib/melon/ruby_method.rb

13 lines
266 B
Ruby

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