summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/envChain_object-executeInGlobalWithBindings-no-use-eval.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /js/src/jit-test/tests/debug/envChain_object-executeInGlobalWithBindings-no-use-eval.js
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/jit-test/tests/debug/envChain_object-executeInGlobalWithBindings-no-use-eval.js')
-rw-r--r--js/src/jit-test/tests/debug/envChain_object-executeInGlobalWithBindings-no-use-eval.js63
1 files changed, 63 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/debug/envChain_object-executeInGlobalWithBindings-no-use-eval.js b/js/src/jit-test/tests/debug/envChain_object-executeInGlobalWithBindings-no-use-eval.js
new file mode 100644
index 0000000000..4b004a5e35
--- /dev/null
+++ b/js/src/jit-test/tests/debug/envChain_object-executeInGlobalWithBindings-no-use-eval.js
@@ -0,0 +1,63 @@
+// Verify the environment chain for Debugger.Object described in
+// js/src/vm/EnvironmentObject.h.
+
+// WithEnvironmentObject should be created if the script has direct eval,
+// even if no binding is used outside of direct eval.
+
+const g = newGlobal({newCompartment: true});
+const dbg = new Debugger();
+const gw = dbg.addDebuggee(g);
+
+const bindings = {
+ bindings_prop: 61,
+};
+
+const envs = JSON.parse(gw.executeInGlobalWithBindings(`
+eval('');
+var qualified = 10;
+unqualified = 20;
+let lexical = 30;
+this.prop = 40;
+
+const envs = [];
+let env = getInnerMostEnvironmentObject();
+while (env) {
+ envs.push({
+ type: getEnvironmentObjectType(env) || "*global*",
+ qualified: !!Object.getOwnPropertyDescriptor(env, "qualified"),
+ unqualified: !!Object.getOwnPropertyDescriptor(env, "unqualified"),
+ lexical: !!Object.getOwnPropertyDescriptor(env, "lexical"),
+ prop: !!Object.getOwnPropertyDescriptor(env, "prop"),
+ });
+
+ env = getEnclosingEnvironmentObject(env);
+}
+JSON.stringify(envs);
+`, bindings).return);
+
+assertEq(envs.length, 3,
+ "WithEnvironmentObject should be created if the script has direct " +
+ "eval, even if no binding is used outside of direct eval");
+
+let i = 0, env;
+
+env = envs[i]; i++;
+assertEq(env.type, "WithEnvironmentObject");
+assertEq(env.qualified, false);
+assertEq(env.unqualified, false);
+assertEq(env.lexical, false);
+assertEq(env.prop, false);
+
+env = envs[i]; i++;
+assertEq(env.type, "GlobalLexicalEnvironmentObject");
+assertEq(env.qualified, false);
+assertEq(env.unqualified, false);
+assertEq(env.lexical, true, "lexical must live in the GlobalLexicalEnvironmentObject");
+assertEq(env.prop, false);
+
+env = envs[i]; i++;
+assertEq(env.type, "*global*");
+assertEq(env.qualified, true, "qualified var must live in the global");
+assertEq(env.unqualified, true, "unqualified name must live in the global");
+assertEq(env.lexical, false);
+assertEq(env.prop, true, "this property must live in the global");