mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
* script: Restrict reexport visibility of DOM types. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Mass pub->pub(crate) conversion. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Hide existing dead code warnings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * Formatting. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * Fix clippy warnings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * Formatting. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * Fix unit tests. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * Fix clippy. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * More formatting. Signed-off-by: Josh Matthews <josh@joshmatthews.net> --------- Signed-off-by: Josh Matthews <josh@joshmatthews.net>
75 lines
2.3 KiB
Rust
75 lines
2.3 KiB
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
// check-tidy: no specs after this line
|
|
|
|
use dom_struct::dom_struct;
|
|
use js::rust::HandleObject;
|
|
|
|
use crate::dom::bindings::cell::DomRefCell;
|
|
use crate::dom::bindings::codegen::Bindings::TestBindingPairIterableBinding::TestBindingPairIterableMethods;
|
|
use crate::dom::bindings::error::Fallible;
|
|
use crate::dom::bindings::iterable::Iterable;
|
|
use crate::dom::bindings::reflector::{reflect_dom_object_with_proto, Reflector};
|
|
use crate::dom::bindings::root::DomRoot;
|
|
use crate::dom::bindings::str::DOMString;
|
|
use crate::dom::globalscope::GlobalScope;
|
|
use crate::script_runtime::CanGc;
|
|
|
|
#[dom_struct]
|
|
pub(crate) struct TestBindingPairIterable {
|
|
reflector: Reflector,
|
|
map: DomRefCell<Vec<(DOMString, u32)>>,
|
|
}
|
|
|
|
impl Iterable for TestBindingPairIterable {
|
|
type Key = DOMString;
|
|
type Value = u32;
|
|
fn get_iterable_length(&self) -> u32 {
|
|
self.map.borrow().len() as u32
|
|
}
|
|
fn get_value_at_index(&self, index: u32) -> u32 {
|
|
*self.map.borrow().get(index as usize).map(|a| &a.1).unwrap()
|
|
}
|
|
fn get_key_at_index(&self, index: u32) -> DOMString {
|
|
self.map
|
|
.borrow()
|
|
.get(index as usize)
|
|
.map(|a| &a.0)
|
|
.unwrap()
|
|
.clone()
|
|
}
|
|
}
|
|
|
|
impl TestBindingPairIterable {
|
|
fn new(
|
|
global: &GlobalScope,
|
|
proto: Option<HandleObject>,
|
|
can_gc: CanGc,
|
|
) -> DomRoot<TestBindingPairIterable> {
|
|
reflect_dom_object_with_proto(
|
|
Box::new(TestBindingPairIterable {
|
|
reflector: Reflector::new(),
|
|
map: DomRefCell::new(vec![]),
|
|
}),
|
|
global,
|
|
proto,
|
|
can_gc,
|
|
)
|
|
}
|
|
}
|
|
|
|
impl TestBindingPairIterableMethods<crate::DomTypeHolder> for TestBindingPairIterable {
|
|
fn Constructor(
|
|
global: &GlobalScope,
|
|
proto: Option<HandleObject>,
|
|
can_gc: CanGc,
|
|
) -> Fallible<DomRoot<TestBindingPairIterable>> {
|
|
Ok(TestBindingPairIterable::new(global, proto, can_gc))
|
|
}
|
|
|
|
fn Add(&self, key: DOMString, value: u32) {
|
|
self.map.borrow_mut().push((key, value));
|
|
}
|
|
}
|