Rename {get,set}_wrapper to {get,set}_jsobject. v1

This commit is contained in:
Bobby Holley 2013-10-08 20:40:45 +02:00
parent 62ddac8b6f
commit 6bf740d967
12 changed files with 24 additions and 24 deletions

View file

@ -119,7 +119,7 @@ impl Traceable for Node<ScriptView> {
debug!("tracing %s", name);
let mut node = node.unwrap();
let cache = node.reflector();
let wrapper = cache.get_wrapper();
let wrapper = cache.get_jsobject();
assert!(wrapper.is_not_null());
unsafe {
(*tracer).debugPrinter = ptr::null();
@ -130,7 +130,7 @@ impl Traceable for Node<ScriptView> {
}
}
}
debug!("tracing %p?:", self.wrapper.get_wrapper());
debug!("tracing %p?:", self.wrapper.get_jsobject());
trace_node(tracer, self.parent_node, "parent");
trace_node(tracer, self.first_child, "first child");
trace_node(tracer, self.last_child, "last child");