Home | History | Annotate | Download | only in RegExp

Lines Matching refs:RegExp

2  *  File Name:          RegExp/function-001.js
9 var SECTION = "RegExp/function-001";
11 var TITLE = "RegExp( pattern, flags )";
17 * - verify that [[Class]] property is RegExp
18 * - prototype property should be set to RegExp.prototype
26 RegExp.prototype.getClassProperty = Object.prototype.toString;
27 var re = new RegExp();
30 "new RegExp().__proto__",
31 RegExp.prototype,
36 "RegExp.prototype.getClassProperty = Object.prototype.toString; " +
37 "(new RegExp()).getClassProperty()",
38 "[object RegExp]",
42 "(new RegExp()).source",
47 "(new RegExp()).global",
52 "(new RegExp()).ignoreCase",
57 "(new RegExp()).multiline",
62 "(new RegExp()).lastIndex",