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