summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/tests/unit/es6module_cycle_b.js
blob: 32725f0f0a35f07b02f6a30f65f29096fc0ca703 (plain)
1
2
3
4
5
6
7
8
9
export const name = "b";

import { name as cName } from "./es6module_cycle_c.js";

export let loaded = true;

export function getValueFromC() {
  return cName;
}