2019-02-12 21:36:37 +01:00
|
|
|
module Ruby
|
|
|
|
class ClassMethodStatement < MethodStatement
|
|
|
|
|
|
|
|
def to_vool
|
2019-02-14 18:24:12 +01:00
|
|
|
Vool::ClassMethodStatement.new( @name , @args.dup , @body.to_vool)
|
2019-02-12 21:36:37 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def to_s(depth = 0)
|
|
|
|
arg_str = @args.collect{|a| a.to_s}.join(', ')
|
|
|
|
at_depth(depth , "def self.#{name}(#{arg_str})" , @body.to_s(depth + 1) , "end")
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|