System as a SystemLoader class

2014-07-14 Thread Guy Bedford
{ constructor(loaderConfig) { this.baseURL = loaderConfig.baseURL; // ... } fetch: function() { super.fetch } } In order to allow this, we would need to first define a SystemLoader class, and make System an instance of it. ___ es-discuss

Re: System as a SystemLoader class

2014-07-14 Thread John Barton
System.constructor { constructor(loaderConfig) { this.baseURL = loaderConfig.baseURL; // ... } fetch: function() { super.fetch } } In order to allow this, we would need to first define a SystemLoader class, and make System an instance

Re: System as a SystemLoader class

2014-07-14 Thread Matthew Robb
extends System.constructor { constructor(loaderConfig) { this.baseURL = loaderConfig.baseURL; // ... } fetch: function() { super.fetch } } In order to allow this, we would need to first define a SystemLoader class, and make System an instance

Re: System as a SystemLoader class

2014-07-14 Thread Guy Bedford
; // ... } fetch: function() { super.fetch } } In order to allow this, we would need to first define a SystemLoader class, and make System an instance of it. ___ es-discuss mailing list es-discuss@mozilla.org https://mail.mozilla.org

Re: System as a SystemLoader class

2014-07-14 Thread John Barton
() { super.fetch } } In order to allow this, we would need to first define a SystemLoader class, and make System an instance of it. ___ es-discuss mailing list es-discuss@mozilla.org https://mail.mozilla.org/listinfo/es-discuss