2018-07-19 13:46:51 +02:00
|
|
|
module Ruby
|
|
|
|
class MethodStatement < Statement
|
|
|
|
attr_reader :name, :args , :body , :clazz
|
|
|
|
|
|
|
|
def initialize( name , args , body , clazz = nil)
|
|
|
|
@name , @args , @body = name , args , body
|
|
|
|
raise "no bod" unless @body
|
|
|
|
@clazz = clazz
|
|
|
|
end
|
|
|
|
|
2018-07-19 13:59:10 +02:00
|
|
|
def to_vool
|
2018-07-19 20:36:28 +02:00
|
|
|
Vool::MethodStatement.new( @name , @args.dup , @body.to_vool)
|
2018-07-19 13:46:51 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def to_s(depth = 0)
|
|
|
|
arg_str = @args.collect{|a| a.to_s}.join(', ')
|
|
|
|
at_depth(depth , "def #{name}(#{arg_str})" , @body.to_s(depth + 1) , "end")
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|