diff options
author | Tim Taubert <tim@timtaubert.de> | 2014-10-12 19:06:56 +0200 |
---|---|---|
committer | Tim Taubert <tim@timtaubert.de> | 2014-10-13 11:13:12 +0200 |
commit | acd98a73a4ea1aad96705c49ab960d9c87a38a28 (patch) | |
tree | 1570653d9cd8169214a2cded8311d70c04a6538d /components/script/dom/nodeiterator.rs | |
parent | 5b720879442ed4f05f0e2af25103e8e4e0a9ecef (diff) | |
download | servo-acd98a73a4ea1aad96705c49ab960d9c87a38a28.tar.gz servo-acd98a73a4ea1aad96705c49ab960d9c87a38a28.zip |
Simple privatizations
Diffstat (limited to 'components/script/dom/nodeiterator.rs')
-rw-r--r-- | components/script/dom/nodeiterator.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/script/dom/nodeiterator.rs b/components/script/dom/nodeiterator.rs index 2e4fe3f442b..27656da9433 100644 --- a/components/script/dom/nodeiterator.rs +++ b/components/script/dom/nodeiterator.rs @@ -10,8 +10,9 @@ use dom::bindings::utils::{Reflectable, Reflector, reflect_dom_object}; #[jstraceable] #[must_root] +#[privatize] pub struct NodeIterator { - pub reflector_: Reflector + reflector_: Reflector } impl NodeIterator { |