Method: Grammar::Ruby::Code::Conditional::Question#_mid

Defined in:
lib/grammar/ruby/code.rb

#_mid(before) ⇒ Object



674
675
676
677
678
679
680
681
# File 'lib/grammar/ruby/code.rb', line 674

def _mid(before)
    @operands.pop._mid(@operands)
    if @operands.size==1
        # TODO : translate to Or in this case
        @operands << True
    end
    before << self
end