rubyx/lib/mom/while_statement.rb
2017-09-06 12:11:30 +03:00

15 lines
230 B
Ruby

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