13 lines
258 B
Ruby
13 lines
258 B
Ruby
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
|