Source code
Revision control
Copy as Markdown
Other Tools
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
var unique_no_target_qualified = 10;
unique_no_target_unqualified = 20;
let unique_no_target_lexical = 30;
this.unique_no_target_prop = 40;
const funcs = Cu.getJSTestingFunctions();
const envs = [];
let env = funcs.getInnerMostEnvironmentObject();
while (env) {
envs.push({
type: funcs.getEnvironmentObjectType(env) || "*SystemGlobal*",
qualified: !!Object.getOwnPropertyDescriptor(env, "unique_no_target_qualified"),
unqualified: !!Object.getOwnPropertyDescriptor(env, "unique_no_target_unqualified"),
lexical: !!Object.getOwnPropertyDescriptor(env, "unique_no_target_lexical"),
prop: !!Object.getOwnPropertyDescriptor(env, "unique_no_target_prop"),
});
env = funcs.getEnclosingEnvironmentObject(env);
}
globalThis.ENVS = envs;