aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/testbindingiterable.rs
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2016-07-28 18:41:24 -0400
committerJosh Matthews <josh@joshmatthews.net>2016-08-24 11:26:00 -0400
commit34bb937aeea9a48b1b4d8dc7c49f375203be4e7e (patch)
tree599099dc8793e3b553bc14782f143f670ebce124 /components/script/dom/testbindingiterable.rs
parent221bc846935a321747fff30689218de7543c964b (diff)
downloadservo-34bb937aeea9a48b1b4d8dc7c49f375203be4e7e.tar.gz
servo-34bb937aeea9a48b1b4d8dc7c49f375203be4e7e.zip
Support value iterators in WebIDL interfaces.
Diffstat (limited to 'components/script/dom/testbindingiterable.rs')
-rw-r--r--components/script/dom/testbindingiterable.rs43
1 files changed, 43 insertions, 0 deletions
diff --git a/components/script/dom/testbindingiterable.rs b/components/script/dom/testbindingiterable.rs
new file mode 100644
index 00000000000..1e462a98531
--- /dev/null
+++ b/components/script/dom/testbindingiterable.rs
@@ -0,0 +1,43 @@
+/* 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 http://mozilla.org/MPL/2.0/. */
+
+// check-tidy: no specs after this line
+
+use dom::bindings::cell::DOMRefCell;
+use dom::bindings::codegen::Bindings::TestBindingIterableBinding::{self, TestBindingIterableMethods};
+use dom::bindings::error::Fallible;
+use dom::bindings::global::GlobalRef;
+use dom::bindings::js::Root;
+use dom::bindings::reflector::{Reflector, reflect_dom_object};
+use dom::bindings::str::DOMString;
+
+#[dom_struct]
+pub struct TestBindingIterable {
+ reflector: Reflector,
+ vals: DOMRefCell<Vec<DOMString>>,
+}
+
+impl TestBindingIterable {
+ fn new(global: GlobalRef) -> Root<TestBindingIterable> {
+ reflect_dom_object(box TestBindingIterable {
+ reflector: Reflector::new(),
+ vals: DOMRefCell::new(vec![]),
+ }, global, TestBindingIterableBinding::Wrap)
+ }
+
+ pub fn Constructor(global: GlobalRef) -> Fallible<Root<TestBindingIterable>> {
+ Ok(TestBindingIterable::new(global))
+ }
+}
+
+impl TestBindingIterableMethods for TestBindingIterable {
+ fn Add(&self, v: DOMString) { self.vals.borrow_mut().push(v); }
+ fn Length(&self) -> u32 { self.vals.borrow().len() as u32 }
+ fn GetItem(&self, n: u32) -> DOMString { self.vals.borrow().get(n as usize).unwrap().clone() }
+ fn IndexedGetter(&self, n: u32, found: &mut bool) -> DOMString {
+ let s = self.GetItem(n);
+ *found = true;
+ s
+ }
+}