mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
30b2b7ce44
For simple rules like function spacing, we can auto-fix these across the code base so they are followed in a consistent way. To generate this patch, I ran: ./mach eslint devtools --no-ignore --fix After this, I reverted any changes to third party files that we really do want to ignore. MozReview-Commit-ID: 6Q8BApkAW20
73 lines
2.2 KiB
JavaScript
73 lines
2.2 KiB
JavaScript
/* 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;
|
|
} + ")()");
|
|
}
|