2017-09-05 12:04:52 +03:00
|
|
|
require_relative "hoister"
|
|
|
|
|
2017-04-01 21:28:57 +03:00
|
|
|
module Vool
|
|
|
|
class WhileStatement < Statement
|
2017-09-05 12:04:52 +03:00
|
|
|
include Hoister
|
2017-04-06 16:06:51 +03:00
|
|
|
attr_reader :condition , :statements
|
2017-04-03 11:49:21 +03:00
|
|
|
|
2017-04-06 16:06:51 +03:00
|
|
|
def initialize( condition , statements )
|
2017-04-03 11:49:21 +03:00
|
|
|
@condition = condition
|
2017-04-06 16:06:51 +03:00
|
|
|
@statements = statements
|
|
|
|
simplify_condition
|
2017-04-03 11:49:21 +03:00
|
|
|
end
|
2017-04-06 16:06:51 +03:00
|
|
|
|
2017-09-05 12:04:52 +03:00
|
|
|
def to_mom( method )
|
|
|
|
statements = @statements.to_mom( method )
|
|
|
|
condition , hoisted = hoist_condition( method )
|
|
|
|
cond = Mom::TruthCheck.new(condition.to_mom(method))
|
|
|
|
check = Mom::WhileStatement.new( cond , statements )
|
|
|
|
check.hoisted = hoisted.to_mom(method) if hoisted
|
|
|
|
check
|
|
|
|
end
|
|
|
|
|
2017-04-06 16:06:51 +03:00
|
|
|
def simplify_condition
|
|
|
|
return unless @condition.is_a?(ScopeStatement)
|
|
|
|
@condition = @condition.first if @condition.single?
|
|
|
|
end
|
|
|
|
|
2017-04-08 12:10:42 +03:00
|
|
|
def collect(arr)
|
|
|
|
@condition.collect(arr)
|
|
|
|
@statements.collect(arr)
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2017-04-01 21:28:57 +03:00
|
|
|
end
|
|
|
|
end
|