mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 00:25:27 +00:00
6fcdc1e67d
--HG-- extra : commitid : 1iLsb7ZpSpI extra : rebase_source : ed920934f04e520f5410454ec3930cd5992aa965
12 lines
453 B
JavaScript
12 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;
|