2016-12-20 19:02:20 +01:00
|
|
|
module Melon
|
|
|
|
|
|
|
|
class RubyMethod
|
|
|
|
|
2017-01-13 21:16:06 +01:00
|
|
|
attr_reader :name , :args_type , :locals_type , :source
|
2016-12-21 10:30:35 +01:00
|
|
|
|
2017-01-13 21:16:06 +01:00
|
|
|
def initialize(name , args_type , locals_type , source )
|
|
|
|
@name , @args_type , @locals_type , @source = name , args_type, locals_type , source
|
2016-12-20 19:02:20 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|