Bug 1915045 Ensure decode tasks are scheduled on BufferingState::Enter() r=media...
[gecko.git] / js / xpconnect / tests / unit / recursive_importA.jsm
blobac763354c496b468eb2b7bc6d1ae616905e27434
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 var EXPORTED_SYMBOLS = ["foo", "bar"];
7 function foo() {
8   return "foo";
11 var bar = {}
12 ChromeUtils.import("resource://test/recursive_importB.jsm", bar);