2018-07-19 13:46:51 +02:00
|
|
|
require_relative "normalizer"
|
|
|
|
|
|
|
|
module Ruby
|
|
|
|
class WhileStatement < Statement
|
|
|
|
include Normalizer
|
|
|
|
attr_reader :condition , :body , :hoisted
|
|
|
|
|
|
|
|
def initialize( condition , body , hoisted = nil)
|
|
|
|
@hoisted = hoisted
|
|
|
|
@condition = condition
|
|
|
|
@body = body
|
|
|
|
end
|
|
|
|
|
2018-07-19 13:59:10 +02:00
|
|
|
def to_vool
|
2019-08-16 13:09:56 +02:00
|
|
|
cond , hoisted = *normalized_vool(@condition)
|
|
|
|
Vool::WhileStatement.new(cond , @body.to_vool , hoisted)
|
2018-07-19 13:46:51 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def to_s(depth = 0)
|
|
|
|
at_depth(depth , "while (#{@condition})" , @body.to_s(depth + 1) , "end" )
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|