blob: 7bf757c0587e553ee4eb189f46c1c4fb3481c8b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
// Test that eval-in-frame throws on accessing optimized out values.
// Use gczeal 0 to keep CGC from invalidating Ion code and causing test failures.
gczeal(0);
load(libdir + "jitopts.js");
if (!jitTogglesMatch(Opts_IonEagerNoOffthreadCompilation))
quit(0);
withJitOptions(Opts_IonEagerNoOffthreadCompilation, function() {
var dbgGlobal = newGlobal({newCompartment: true});
var dbg = new dbgGlobal.Debugger();
dbg.addDebuggee(this);
var warmedUp = false;
function check() {
if (warmedUp) {
var a = dbg.getNewestFrame().older.eval("a")
assertEq(a.throw.unsafeDereference().toString(),
"Error: variable 'a' has been optimized out");
}
}
// Test optimized-out binding in function scope.
function testFunctionScope() {
var a = 1;
for (var i = 0; i < 1; i++) { check(); }
}
// Test optimized-out binding in block scope.
function testBlockScope() {
{
let a = 1;
for (var i = 0; i < 1; i++) { check(); }
}
}
with({}) {}
testFunctionScope();
testBlockScope();
warmedUp = true;
testFunctionScope();
testBlockScope();
});
|