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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
var gDebuggee;
var gClient;
var gThreadClient;
// Test that closures can be inspected.
function run_test()
{
initTestDebuggerServer();
gDebuggee = addTestGlobal("test-closures");
gClient = new DebuggerClient(DebuggerServer.connectPipe());
gClient.connect().then(function () {
attachTestTabAndResume(gClient, "test-closures", function (aResponse, aTabClient, aThreadClient) {
gThreadClient = aThreadClient;
test_object_grip();
});
});
do_test_pending();
}
function test_object_grip()
{
gThreadClient.addOneTimeListener("paused", function (aEvent, aPacket) {
let person = aPacket.frame.environment.bindings.variables.person;
do_check_eq(person.value.class, "Object");
let personClient = gThreadClient.pauseGrip(person.value);
personClient.getPrototypeAndProperties(aResponse => {
do_check_eq(aResponse.ownProperties.getName.value.class, "Function");
do_check_eq(aResponse.ownProperties.getAge.value.class, "Function");
do_check_eq(aResponse.ownProperties.getFoo.value.class, "Function");
let getNameClient = gThreadClient.pauseGrip(aResponse.ownProperties.getName.value);
let getAgeClient = gThreadClient.pauseGrip(aResponse.ownProperties.getAge.value);
let getFooClient = gThreadClient.pauseGrip(aResponse.ownProperties.getFoo.value);
getNameClient.getScope(aResponse => {
do_check_eq(aResponse.scope.bindings.arguments[0].name.value, "Bob");
getAgeClient.getScope(aResponse => {
do_check_eq(aResponse.scope.bindings.arguments[1].age.value, 58);
getFooClient.getScope(aResponse => {
do_check_eq(aResponse.scope.bindings.variables.foo.value, 10);
gThreadClient.resume(() => finishClient(gClient));
});
});
});
});
});
gDebuggee.eval("(" + function () {
var PersonFactory = function (name, age) {
var foo = 10;
return {
getName: function () { return name; },
getAge: function () { return age; },
getFoo: function () { foo = Date.now(); return foo; }
};
};
var person = new PersonFactory("Bob", 58);
debugger;
} + ")()");
}
|