diff options
Diffstat (limited to 'js/src/tests/non262/statements/regress-642975.js')
-rw-r--r-- | js/src/tests/non262/statements/regress-642975.js | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/js/src/tests/non262/statements/regress-642975.js b/js/src/tests/non262/statements/regress-642975.js new file mode 100644 index 0000000000..f6180e7e8f --- /dev/null +++ b/js/src/tests/non262/statements/regress-642975.js @@ -0,0 +1,30 @@ +/* -*- indent-tabs-mode: nil; js-indent-level: 4 -*- */ +/* + * Any copyright is dedicated to the Public Domain. + * http://creativecommons.org/licenses/publicdomain/ + */ + +var x = 0; +var y = 1; +var g = 1; + +var expect = "y"; +var actual; + +try { + eval("y: while (x) break\n/y/g.exec('y')"); + actual = RegExp.lastMatch; +} catch (e) { + actual = '' + e; +} +assertEq(actual, expect); + +try { + eval("y: while (x) continue\n/y/g.exec('y')"); + actual = RegExp.lastMatch; +} catch (e) { + actual = '' + e; +} +assertEq(actual, expect); + +reportCompare(0, 0, "ok"); |