js/src/jit-test/tests/basic/testStaticsInRegExp.js

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/js/src/jit-test/tests/basic/testStaticsInRegExp.js	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,9 @@
     1.4 +'abcdef'.replace(/a(\w+)c/, function() {
     1.5 +    assertEq(RegExp.lastMatch, 'abc');
     1.6 +    '123456'.replace(/1(\d+)3/, function() {
     1.7 +        assertEq(RegExp.lastMatch, '123');
     1.8 +    });
     1.9 +    assertEq(RegExp.lastMatch, '123');
    1.10 +});
    1.11 +assertEq(RegExp.lastMatch, 'abc');
    1.12 +

mercurial