Parent Directory
|
Revision Log
|
Patch
revision 340 by ph10, Fri Apr 18 20:00:21 2008 UTC | revision 341 by ph10, Sat Apr 19 16:41:04 2008 UTC | |
---|---|---|
# | Line 9581 Failed: reference to non-existent subpat | Line 9581 Failed: reference to non-existent subpat |
9581 | /(?&N)[]a(?<N>)](abc)/ | /(?&N)[]a(?<N>)](abc)/ |
9582 | Failed: reference to non-existent subpattern at offset 4 | Failed: reference to non-existent subpattern at offset 4 |
9583 | ||
9584 | /a[]b/ | |
9585 | Failed: missing terminating ] for character class at offset 4 | |
9586 | ||
9587 | /a[^]b/ | |
9588 | Failed: missing terminating ] for character class at offset 5 | |
9589 | ||
9590 | /a[]b/<JS> | |
9591 | ** Failers | |
9592 | No match | |
9593 | ab | |
9594 | No match | |
9595 | ||
9596 | /a[]+b/<JS> | |
9597 | ** Failers | |
9598 | No match | |
9599 | ab | |
9600 | No match | |
9601 | ||
9602 | /a[]*+b/<JS> | |
9603 | ** Failers | |
9604 | No match | |
9605 | ab | |
9606 | No match | |
9607 | ||
9608 | /a[^]b/<JS> | |
9609 | aXb | |
9610 | 0: aXb | |
9611 | a\nb | |
9612 | 0: a\x0ab | |
9613 | ** Failers | |
9614 | No match | |
9615 | ab | |
9616 | No match | |
9617 | ||
9618 | /a[^]+b/<JS> | |
9619 | aXb | |
9620 | 0: aXb | |
9621 | a\nX\nXb | |
9622 | 0: a\x0aX\x0aXb | |
9623 | ** Failers | |
9624 | No match | |
9625 | ab | |
9626 | No match | |
9627 | ||
9628 | /a(?!)+b/ | |
9629 | Failed: nothing to repeat at offset 5 | |
9630 | ||
9631 | /a(*FAIL)+b/ | |
9632 | Failed: nothing to repeat at offset 8 | |
9633 | ||
9634 | / End of testinput2 / | / End of testinput2 / |
|
ViewVC Help | |
Powered by ViewVC 1.1.5 |