Take the following situation:
// M.js
export * from "foo";
export * from "bar";
// "foo"
export var x = 1;
// "bar"
export var x = 2;
What is M.x bound to? foo.x (1), bar.x (2), or is this an error? What is
our current thinking?
{ Kevin }
_______________________________________________ es-discuss mailing list [email protected] https://mail.mozilla.org/listinfo/es-discuss

