rubyx/lib/mom/while_statement.rb

15 lines
230 B
Ruby
Raw Normal View History

module Mom
2017-09-06 11:11:30 +02:00
class WhileStatement < Statement
attr_reader :condition , :statements
attr_accessor :hoisted
def initialize( cond , statements)
@condition = cond
@statements = statements
end
end
end