Method: Crokus::Parser#eqexp

Defined in:
lib/crokus/parser.rb

#eqexpObject



754
755
756
757
758
759
760
761
762
763
764
# File 'lib/crokus/parser.rb', line 754

def eqexp
  indent "eqexp : #{showNext}"
  e1=relexp
  while showNext.is? [:eq,:neq]
    op=acceptIt
    e2=relexp
    e1=Binary.new(e1,op,e2)
  end
  dedent
  e1
end