diff options
author | Samson <16504129+sagudev@users.noreply.github.com> | 2023-09-06 15:08:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-06 13:08:45 +0000 |
commit | e0a6281e7375468f367aadf398d5a836512d9df6 (patch) | |
tree | d29cc82409d68f4b053de615d66c17ac779addd5 /components/script/dom/mod.rs | |
parent | 3df284cf54d9d99daf32794a030efa6358f5cf39 (diff) | |
download | servo-e0a6281e7375468f367aadf398d5a836512d9df6.tar.gz servo-e0a6281e7375468f367aadf398d5a836512d9df6.zip |
Impl Setlike and Maplike (#30237)
* MallocSizeOf for Index{Set, Map}
* like as iterable in WebIDL
* Codegen magic for like interfaces
* TestBinding for like
* Test for Setlike and Maplike test bindings
* Some fixes
* Switch to any.js
* nit
* Keep order
Diffstat (limited to 'components/script/dom/mod.rs')
-rw-r--r-- | components/script/dom/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/dom/mod.rs b/components/script/dom/mod.rs index 95d1821b87a..ae92d11de8f 100644 --- a/components/script/dom/mod.rs +++ b/components/script/dom/mod.rs @@ -532,8 +532,10 @@ pub mod svggraphicselement; pub mod svgsvgelement; pub mod testbinding; pub mod testbindingiterable; +pub mod testbindingmaplike; pub mod testbindingpairiterable; pub mod testbindingproxy; +pub mod testbindingsetlike; pub mod testrunner; pub mod testworklet; pub mod testworkletglobalscope; |