Backed out changeset 713114c0331a (bug 1938707) by developer request CLOSED TREE
[gecko.git] / js / xpconnect / tests / unit / es6module_cycle_c.js
blob2fd2f6e3ebf337f39976302bbf7a8de9ba6303d2
1 export const name = "c";
3 import { name as aName } from "./es6module_cycle_a.js";
5 export let loaded = true;
7 export function getValueFromA() {
8   return aName;