Home | History | Annotate | Line # | Download | only in data
      1 # parentheses and perversions thereof
      2 a(b)c		-	abc	abc
      3 a\(b\)c		b	abc	abc
      4 a(		C	EPAREN
      5 a(		b	a(	a(
      6 a\(		-	a(	a(
      7 a\(		bC	EPAREN
      8 a\(b		bC	EPAREN
      9 a(b		C	EPAREN
     10 a(b		b	a(b	a(b
     11 # gag me with a right parenthesis -- 1003.2 goofed here (my fault, partly)
     12 a)		-	a)	a)
     13 )		-	)	)
     14 # end gagging (in a just world, those *should* give EPAREN)
     15 a)		b	a)	a)
     16 a\)		bC	EPAREN
     17 \)		bC	EPAREN
     18 a()b		-	ab	ab
     19 a\(\)b		b	ab	ab
     20