Reorganize tree ref / node traits

rustc is no longer happy with

    impl<NR:TreeNodeRef<N>,N:TreeNode<NR>> TreeUtils for NR
This commit is contained in:
Keegan McAllister 2013-08-09 15:15:18 -07:00
parent abaeb58203
commit 1bdaff0fad
13 changed files with 327 additions and 238 deletions

View file

@ -18,7 +18,7 @@ use dom::htmltitleelement::HTMLTitleElement;
use js::jsapi::{JS_AddObjectRoot, JS_RemoveObjectRoot, JSObject, JSContext, JSVal};
use js::glue::RUST_OBJECT_TO_JSVAL;
use servo_util::tree::{TreeNodeRef, TreeUtils};
use servo_util::tree::TreeNodeRef;
use std::cast;
use std::ptr;