summaryrefslogtreecommitdiff
path: root/op_crates/web/00_webidl.js
AgeCommit message (Collapse)Author
2021-03-12chore: split web op crate (#9635)Luca Casonato
This commit starts splitting out the deno_web op crate into multiple smaller crates. This commit splits out WebIDL and URL API, but in the future I want to split out each spec into its own crate. That means we will have (in rough order of loading): `webidl`, `dom`, `streams`, `console`, `encoding`, `url`, `file`, `fetch`, `websocket`, and `webgpu` crates.
2021-03-08fix(webgpu): add webidl records and simple unions (#9698)Luca Casonato
The only functional user facing difference is that this commit allows the use SPIRV shaders, not just WGSL. This matches FF and Chrome Canary.
2021-03-01chore: improve internal webidl functions (#9606)Luca Casonato
2021-02-16chore: add internal webidl helpers for enums and nullables (#9504)Anonymous
Co-authored-by: Luca Casonato <lucacasonato@yahoo.com>
2021-02-13fix: webidl utils and align `Event` to spec (#9470)Luca Casonato