mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Simple privatizations
This commit is contained in:
parent
5b72087944
commit
acd98a73a4
36 changed files with 59 additions and 22 deletions
|
@ -23,12 +23,13 @@ use std::cell::Cell;
|
|||
// http://dom.spec.whatwg.org/#interface-treewalker
|
||||
#[jstraceable]
|
||||
#[must_root]
|
||||
#[privatize]
|
||||
pub struct TreeWalker {
|
||||
pub reflector_: Reflector,
|
||||
pub root_node: JS<Node>,
|
||||
pub current_node: Cell<JS<Node>>,
|
||||
pub what_to_show: u32,
|
||||
pub filter: Filter
|
||||
reflector_: Reflector,
|
||||
root_node: JS<Node>,
|
||||
current_node: Cell<JS<Node>>,
|
||||
what_to_show: u32,
|
||||
filter: Filter
|
||||
}
|
||||
|
||||
impl TreeWalker {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue