adds mom while
much like the if, difference will show later in the jump arrangement
This commit is contained in:
@ -1,5 +1,8 @@
|
||||
require_relative "hoister"
|
||||
|
||||
module Vool
|
||||
class WhileStatement < Statement
|
||||
include Hoister
|
||||
attr_reader :condition , :statements
|
||||
|
||||
def initialize( condition , statements )
|
||||
@ -8,6 +11,15 @@ module Vool
|
||||
simplify_condition
|
||||
end
|
||||
|
||||
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
|
||||
|
||||
def simplify_condition
|
||||
return unless @condition.is_a?(ScopeStatement)
|
||||
@condition = @condition.first if @condition.single?
|
||||
|
Reference in New Issue
Block a user