rubyx/lib/vool/if_statement.rb

6 lines
121 B
Ruby
Raw Normal View History

2017-04-01 20:28:57 +02:00
module Vool
class IfStatement < Statement
attr_accessor :branch_type , :condition , :if_true , :if_false
end
end