Erik Arvidsson (2013-10-31T14:10:34.000Z)
domenic at domenicdenicola.com (2013-11-02T19:24:05.517Z)
I see that Jason added a Loader.prototype.define to his reference implementation. https://people.mozilla.org/~jorendorff/js-loaders/Loader.html#section-177. This is great. It is a much needed capability to allow bundling modules into a single file. It allows you to do something like ```js System.define(['url-a', urlB], ['export var a = "a";', moduleBodyForUrlB]); ``` However, this is just another form of eval and will therefore not be available in CSP. Can we come up with something that works in CSP environments? How about? ```js module 'url-a' { export var a = "a"; } ``` =P