Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:RegExp

29  * @fileoverview Check that various regexp constructs work as intended.
83 var a = new RegExp("^" + lc + "$");
85 a = new RegExp("^" + lc + "$", "i");
88 var A = new RegExp("^" + uc + "$");
90 A = new RegExp("^" + uc + "$", "i");
93 a = new RegExp("^[" + lc + "]$");
95 a = new RegExp("^[" + lc + "]$", "i");
98 A = new RegExp("^[" + uc + "]$");
100 A = new RegExp("^[" + uc + "]$", "i");
112 assertThrows("a = new RegExp('[z-a]');");