diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /js/src/jit-test/tests/ion/bindname.js | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | js/src/jit-test/tests/ion/bindname.js | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/ion/bindname.js b/js/src/jit-test/tests/ion/bindname.js new file mode 100644 index 0000000000..be5eca2d03 --- /dev/null +++ b/js/src/jit-test/tests/ion/bindname.js @@ -0,0 +1,53 @@ +// Test the scope chain walk. +function test1() { + var x = 0; + function f1(addprop) { + function f2() { + eval(""); + function f3() { + eval(""); + function f4() { + for (var i=0; i<100; i++) { + x = x + i; + } + } + return f4; + } + return f3(); + } + var g = f2(); + g(); + if (addprop) + eval("var a1 = 3; var x = 33;"); + g(); + if (addprop) + assertEq(x, 4983); + return f2(); + } + + var g = f1(true); + g(); + g = f1(false); + eval("var y = 2020; var z = y + 3;"); + g(); + return x; +} +assertEq(test1(), 19800); + +// Test with non-cacheable objects on the scope chain. +function test2(o) { + var x = 0; + with ({}) { + with (o) { + var f = function() { + for (var i=0; i<100; i++) { + x++; + } + }; + } + } + f(); + assertEq(o.x, 110); + assertEq(x, 0); +} +test2({x: 10}); |