Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:regexp

33  * @fileoverview Check that various regexp constructs work as intended.
87 var a = new RegExp("^" + lc + "$");
89 a = new RegExp("^" + lc + "$", "i");
92 var A = new RegExp("^" + uc + "$");
94 A = new RegExp("^" + uc + "$", "i");
97 a = new RegExp("^[" + lc + "]$");
99 a = new RegExp("^[" + lc + "]$", "i");
102 A = new RegExp("^[" + uc + "]$");
104 A = new RegExp("^[" + uc + "]$", "i");
116 assertThrows("a = new RegExp('[z-a]');");