summaryrefslogtreecommitdiffstats
path: root/toolkit/components/workerloader/tests/moduleD-circular.js
blob: d77bdc74dba7d10a4de135b6db3a9f5362b492d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* 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;