soml-parser/lib/soml/code/while_statement.rb

6 lines
115 B
Ruby

module Soml
class WhileStatement < Statement
attr_accessor :branch_type , :condition , :statements
end
end