Bug 1915045 Ensure decode tasks are scheduled on BufferingState::Enter() r=media...
[gecko.git] / js / xpconnect / tests / unit / recursive_importB.jsm
blob1bf84971b65ee4b824bfa63a014f8ee7bb5b48b9
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 = ["baz", "qux"];
7 function baz() {
8   return "baz";
11 var qux = {}
12 ChromeUtils.import("resource://test/recursive_importA.jsm", qux);