| "This page tests assertions followed by quantifiers." |
| debug("\nTesting regexp: " + regexp); |
| shouldBeTrue("regexp.test('a')"); |
| shouldBe("regexp.lastIndex", "0"); |
| debug("\nTesting regexp: " + regexp); |
| shouldBeTrue("regexp.test('a')"); |
| shouldBe("regexp.lastIndex", "0"); |
| debug("\nTesting regexp: " + regexp); |
| shouldBeTrue("regexp.test('b')"); |
| shouldBe("regexp.lastIndex", "0"); |
| debug("\nTesting regexp: " + regexp); |
| shouldBeTrue("regexp.test('b')"); |
| shouldBe("regexp.lastIndex", "0"); |
| shouldBeTrue('/^(?=a)?b$/.test("b")'); |
| var successfullyParsed = true; |