rubyx/lib/mom/while_statement.rb
Torsten Ruger af85cb7c67 adds mom while
much like the if, difference will show later in the jump arrangement
2017-09-05 12:04:52 +03:00

15 lines
232 B
Ruby

module Mom
class WhileStatement < Instruction
attr_reader :condition , :statements
attr_accessor :hoisted
def initialize( cond , statements)
@condition = cond
@statements = statements
end
end
end