aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/node.rs
diff options
context:
space:
mode:
authorAnthony Ramine <n.oxyde@gmail.com>2016-08-13 22:38:02 +0200
committerAnthony Ramine <n.oxyde@gmail.com>2016-08-13 22:38:02 +0200
commit9c8a810d6edf28661b6b970256b701a30822beef (patch)
treecf03bc017ba25d2b78d59dc2d3f85190b696fca2 /components/script/dom/node.rs
parent476df170453d2805ba4b9d138804c0b189679dc8 (diff)
downloadservo-9c8a810d6edf28661b6b970256b701a30822beef.tar.gz
servo-9c8a810d6edf28661b6b970256b701a30822beef.zip
Use impl Trait syntax for Node::child_elements
Diffstat (limited to 'components/script/dom/node.rs')
-rw-r--r--components/script/dom/node.rs14
1 files changed, 5 insertions, 9 deletions
diff --git a/components/script/dom/node.rs b/components/script/dom/node.rs
index 2769b7503bc..34e69552f18 100644
--- a/components/script/dom/node.rs
+++ b/components/script/dom/node.rs
@@ -70,7 +70,7 @@ use std::borrow::ToOwned;
use std::cell::{Cell, UnsafeCell};
use std::cmp::max;
use std::default::Default;
-use std::iter::{self, FilterMap, Peekable};
+use std::iter;
use std::mem;
use std::ops::Range;
use string_cache::{Atom, Namespace, QualName};
@@ -781,7 +781,7 @@ impl Node {
}
}
- pub fn child_elements(&self) -> ChildElementIterator {
+ pub fn child_elements(&self) -> impl Iterator<Item=Root<Element>> {
self.children().filter_map(Root::downcast as fn(_) -> _).peekable()
}
@@ -1111,10 +1111,6 @@ impl LayoutNodeHelpers for LayoutJS<Node> {
// Iteration and traversal
//
-pub type ChildElementIterator =
- Peekable<FilterMap<NodeSiblingIterator,
- fn(Root<Node>) -> Option<Root<Element>>>>;
-
pub struct NodeSiblingIterator {
current: Option<Root<Node>>,
}
@@ -1460,7 +1456,7 @@ impl Node {
0 => (),
// Step 6.1.2
1 => {
- if !parent.child_elements().peek().is_none() {
+ if !parent.child_elements().next().is_none() {
return Err(Error::HierarchyRequest);
}
if let Some(child) = child {
@@ -1476,7 +1472,7 @@ impl Node {
},
// Step 6.2
NodeTypeId::Element(_) => {
- if !parent.child_elements().peek().is_none() {
+ if !parent.child_elements().next().is_none() {
return Err(Error::HierarchyRequest);
}
if let Some(ref child) = child {
@@ -1503,7 +1499,7 @@ impl Node {
}
},
None => {
- if !parent.child_elements().peek().is_none() {
+ if !parent.child_elements().next().is_none() {
return Err(Error::HierarchyRequest);
}
},