rubyx/lib/mom/if_statement.rb

15 lines
272 B
Ruby
Raw Normal View History

module Mom
class IfStatement < Instruction
attr_reader :condition , :if_true , :if_false
attr_accessor :hoisted
def initialize( cond , if_true , if_false = nil)
@condition = cond
@if_true = if_true
@if_false = if_false
end
end
end