25 lines
816 B
JavaScript
25 lines
816 B
JavaScript
/* 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
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
var qualified = 10;
|
|
unqualified = 20;
|
|
let lexical = 30;
|
|
this.prop = 40;
|
|
|
|
const funcs = Cu.getJSTestingFunctions();
|
|
const envs = [];
|
|
let env = funcs.getInnerMostEnvironmentObject();
|
|
while (env) {
|
|
envs.push({
|
|
type: funcs.getEnvironmentObjectType(env) || "*global*",
|
|
qualified: !!Object.getOwnPropertyDescriptor(env, "qualified"),
|
|
unqualified: !!Object.getOwnPropertyDescriptor(env, "unqualified"),
|
|
lexical: !!Object.getOwnPropertyDescriptor(env, "lexical"),
|
|
prop: !!Object.getOwnPropertyDescriptor(env, "prop"),
|
|
});
|
|
|
|
env = funcs.getEnclosingEnvironmentObject(env);
|
|
}
|
|
|
|
this.ENVS = envs;
|