2016-12-20 19:02:20 +01:00
|
|
|
module Melon
|
|
|
|
|
|
|
|
class RubyMethod
|
|
|
|
|
2016-12-21 10:30:35 +01:00
|
|
|
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
|
2016-12-20 19:02:20 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|