rubyx/lib/ruby/class_method_statement.rb
2019-09-19 20:48:21 +03:00

16 lines
369 B
Ruby

module Ruby
class ClassMethodStatement < MethodStatement
def to_vool
body = normalized_body
Vool::ClassMethodExpression.new( @name , @args.dup , body.to_vool)
end
def to_s(depth = 0)
arg_str = @args.collect{|a| a.to_s}.join(', ')
at_depth(depth , "def self.#{name}(#{arg_str})\n#{@body.to_s(depth + 1)}\nend")
end
end
end