Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:match

93   // match and verify the override was cleared and that we record the new
113 OverrideCase(function() { return input.match(re); });
114 OverrideCase(function() { return input.match(re_g); });
145 // Here's one that matches once, then tries to match again, but fails.
146 // Verify that the last match info is from the last match, not from the
152 // A test that initially does a zero width match, but later does a non-zero
153 // width match.
161 // a regexp with a non-ASCII character in it can never match an ASCII
165 "This is an ASCII string that could take forever".match(re);
186 assertEquals(null, s.match(/å{1,1}prune/));
187 assertEquals("prune", (s.match(/å{0,0}prune/)[0]));