Lines Matching full:export
47 // export {} from "foo.js"; (sic!)
50 // export {x};
51 // export {x as y};
52 // export VariableStatement
53 // export Declaration
54 // export default ...
59 // export {x} from "foo.js";
60 // export {x as y} from "foo.js";
66 // export * from "foo.js";
88 // Import/export entries that are associated with a MODULE-allocated
188 // If there are multiple export entries with the same export name, return the
194 // An explicitly indirect export is an export entry arising from an export
196 // export {a as c} from "X";
197 // An implicitly indirect export corresponds to
198 // export {b as c};
201 // This function finds such implicitly indirect export entries and rewrites
204 // import {a as b} from "X"; export {b as c};
206 // import {a as b} from "X"; export {a as c} from "X";