2019-02-12 21:36:37 +01:00
|
|
|
module Ruby
|
|
|
|
class ClassMethodStatement < MethodStatement
|
|
|
|
|
2019-10-03 23:36:49 +02:00
|
|
|
def to_sol
|
2019-08-19 14:56:15 +02:00
|
|
|
body = normalized_body
|
2019-10-03 23:36:49 +02:00
|
|
|
Sol::ClassMethodExpression.new( @name , @args.dup , body.to_sol)
|
2019-02-12 21:36:37 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def to_s(depth = 0)
|
|
|
|
arg_str = @args.collect{|a| a.to_s}.join(', ')
|
2019-09-19 19:48:21 +02:00
|
|
|
at_depth(depth , "def self.#{name}(#{arg_str})\n#{@body.to_s(depth + 1)}\nend")
|
2019-02-12 21:36:37 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|