rubyx/lib/vool/if_statement.rb
2017-04-01 21:28:57 +03:00

6 lines
121 B
Ruby

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