blob: 77d43dfba87c07ea08cb2aa23493887d87f894f7 (
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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
add_task(
threadFrontTest(async ({ threadFront, debuggee, client }) => {
const packet = await executeOnNextTickAndWaitForPause(
() => evalCode(debuggee),
threadFront
);
const environment = await packet.frame.getEnvironment();
Assert.equal(environment.type, "function");
Assert.equal(environment.bindings.arguments[0].z.value, "z");
const parent = environment.parent;
Assert.equal(parent.type, "block");
Assert.equal(parent.bindings.variables.banana3.value.class, "Function");
const grandpa = parent.parent;
Assert.equal(grandpa.type, "function");
Assert.equal(grandpa.bindings.arguments[0].y.value, "y");
await threadFront.resume();
})
);
function evalCode(debuggee) {
debuggee.eval(
"function banana(x) {\n" +
" return function banana2(y) {\n" +
" return function banana3(z) {\n" +
' eval("");\n' +
" debugger;\n" +
" };\n" +
" };\n" +
"}\n" +
"banana('x')('y')('z');\n"
);
}
|