rubyx/lib/ast/conditional_expression.rb

13 lines
297 B
Ruby
Raw Normal View History

2014-05-05 09:02:02 +02:00
module Ast
class ConditionalExpression < Expression
attr_reader :cond, :if_true, :if_false
def initialize cond, if_true, if_false
@cond, @if_true, @if_false = cond, if_true, if_false
end
def == other
compare other , [:cond, :if_true, :if_false]
end
end
end