Yusuke Suzuki
Yusuke Suzuki
Note that JSC implemented this behind the flag. https://trac.webkit.org/changeset/270208/webkit
@dschuff Thanks! I've just joined :) (yusukesuzuki / [email protected]).
Friendly ping :)
@dschuff Can you take a look please?
FYI, we aligned JavaScriptCore behavior to SpiderMonkey's one described in https://github.com/tc39/ecma402/issues/402#issuecomment-623628320 :)
JSC change FYI https://github.com/WebKit/WebKit/commit/51b6659009f49c33837e1ed10cddbd454315fb44
Now, the metadata support becomes mandatory to support whatwg's `script type="module"` tag. Quoted from #148 > Looking through whatwg module spec and I think that the module-script assumes per-module-script-tree information....
The easiest way is, just passing the `metadata` throughout the pipeline along with `entry`. And the `metadata` can be used over multiple `entry`s. For example, the fetch request from the...
**edit**: Fixed. Thanks @domenic ! For whatwg ``, it seems that, - a settings object (It should be aded to fetch request) - a destination (Currently, this is always `"script"`)...
> Sometimes it is "worker" or "sharedworker" > > For non-top-level fetches it is the referring module script's base URL Oops! Super nice, thanks! > In general I would caution...