summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/tests/unit/non_shared_nest_import_non_shared_3.mjs
blob: f5a0731fa8a1c6fdb6a65f9b7ca84f532ccfb95b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export function func3() {
  const { func3 } = ChromeUtils.importESModule("resource://test/non_shared_nest_import_non_shared_target_3.mjs", {
    global: "current",
  });

  const result = Cu.evalInSandbox(`
  const { func3 } = ChromeUtils.importESModule("resource://test/non_shared_nest_import_non_shared_target_3.mjs", {
    global: "current",
  });
  func3();
`, globalThis["sb"]);

  return func3() + result;
}