/LayoutTests/fast/js/resources/regexp-compile.js
https://github.com/kvlasov/qtwebkit · JavaScript · 53 lines · 37 code · 14 blank · 2 comment · 0 complexity · 25cbd74bc3e3758dfb6230bc95d386f0 MD5 · raw file
- description(
- 'Test RegExp.compile method.'
- );
- re = new RegExp("a", "i");
- shouldBe("re.toString()", "'/a/i'");
- re.compile("a");
- shouldBe("re.multiline", "false");
- shouldBe("re.ignoreCase", "false");
- shouldBe("re.global", "false");
- shouldBe("re.test('A')", "false");
- shouldBe("re.toString()", "'/a/'");
- re.compile("b", "g");
- shouldBe("re.toString()", "'/b/g'");
- re.compile(new RegExp("c"));
- shouldBe("re.toString()", "'/c/'");
- re.compile(new RegExp("c", "i"));
- shouldBe("re.ignoreCase", "true");
- shouldBe("re.test('C')", "true");
- shouldBe("re.toString()", "'/c/i'");
- shouldThrow("re.compile(new RegExp('c'), 'i');");
- // It's OK to supply a second argument, as long as the argument is "undefined".
- re.compile(re, undefined);
- shouldBe("re.toString()", "'/c/i'");
- shouldThrow("re.compile(new RegExp('+'));");
- re.compile(undefined);
- shouldBe("re.toString()", "'/undefined/'");
- re.compile(null);
- shouldBe("re.toString()", "'/null/'");
- re.compile();
- shouldBe("re.toString()", "'//'"); // /(?:)/ in Firefox
- re.compile("z", undefined);
- shouldBe("re.toString()", "'/z/'");
- // Compiling should reset lastIndex.
- re.lastIndex = 100;
- re.compile(/a/g);
- shouldBe("re.lastIndex", "0");
- re.exec("aaa");
- shouldBe("re.lastIndex", "1");
- var successfullyParsed = true;