6 lines
121 B
Ruby
6 lines
121 B
Ruby
module Vool
|
|
class IfStatement < Statement
|
|
attr_accessor :branch_type , :condition , :if_true , :if_false
|
|
end
|
|
end
|