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

6 lines
121 B
Ruby

module Soml
class IfStatement < Statement
attr_accessor :branch_type , :condition , :if_true , :if_false
end
end