js/src/tests/ecma_5/RegExp/exec-lastIndex-ToInteger.js

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/js/src/tests/ecma_5/RegExp/exec-lastIndex-ToInteger.js	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,36 @@
     1.4 +/*
     1.5 + * Any copyright is dedicated to the Public Domain.
     1.6 + * http://creativecommons.org/licenses/publicdomain/
     1.7 + *
     1.8 + * Author: Geoffrey Sneddon <geoffers+mozilla@gmail.com>
     1.9 + */
    1.10 +
    1.11 +var BUGNUMBER = 646490;
    1.12 +var summary =
    1.13 +  "RegExp.prototype.exec doesn't get the lastIndex and ToInteger() it for " +
    1.14 +  "non-global regular expressions when it should";
    1.15 +
    1.16 +print(BUGNUMBER + ": " + summary);
    1.17 +
    1.18 +/**************
    1.19 + * BEGIN TEST *
    1.20 + **************/
    1.21 +
    1.22 +var re = /./, called = 0;
    1.23 +re.lastIndex = {valueOf: function() { called++; return 0; }};
    1.24 +re.exec(".");
    1.25 +re.lastIndex = {toString: function() { called++; return "0"; }};
    1.26 +re.exec(".");
    1.27 +re.lastIndex = {
    1.28 +  valueOf: function() { called++; return 0; },
    1.29 +  toString: function() { called--; }
    1.30 +};
    1.31 +re.exec(".");
    1.32 +assertEq(called, 3, "FAIL, got " + called);
    1.33 +
    1.34 +/******************************************************************************/
    1.35 +
    1.36 +if (typeof reportCompare === "function")
    1.37 +  reportCompare(true, true);
    1.38 +
    1.39 +print("All tests passed!");

mercurial