rubyx/lib/ruby/method_statement.rb
Torsten Ruger 61225c2f20 ifx most of the conversion
well . . it's still converting to ruby, minor detail
2018-07-19 14:59:10 +03:00

28 lines
644 B
Ruby

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
def to_vool
MethodStatement.new( @name , @args , @body.normalize)
end
def has_yield?
each{|statement| return true if statement.is_a?(YieldStatement)}
return false
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