mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-16 17:33:08 +09:00
11 lines
453 B
JavaScript
11 lines
453 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
// Module C and module D have circular dependencies.
|
|
// This should not prevent from loading them.
|
|
|
|
exports.enteredD = true;
|
|
var C = require("chrome://mochitests/content/chrome/toolkit/components/workerloader/tests/moduleC-circular.js");
|
|
exports.copiedFromC = JSON.parse(JSON.stringify(C));
|
|
exports.exportedFromC = C;
|
|
exports.finishedD = true;
|