Bug 1915045 Ensure decode tasks are scheduled on BufferingState::Enter() r=media...
[gecko.git] / js / xpconnect / tests / unit / es6module_cycle_b.js
blob32725f0f0a35f07b02f6a30f65f29096fc0ca703
1 export const name = "b";
3 import { name as cName } from "./es6module_cycle_c.js";
5 export let loaded = true;
7 export function getValueFromC() {
8   return cName;