Rename |wrapper| to |reflector_| in Reflectable implementations for DOM objects.

This commit is contained in:
Bobby Holley 2013-10-09 12:01:12 +02:00
parent 92e91c58da
commit 5ed8b9e83f
16 changed files with 46 additions and 46 deletions

View file

@ -8,13 +8,13 @@ use script_task::page_from_context;
use js::jsapi::{JSContext, JSObject};
pub struct WindowProxy {
wrapper: Reflector
reflector_: Reflector
}
impl WindowProxy {
pub fn new() -> @mut WindowProxy {
@mut WindowProxy {
wrapper: Reflector::new()
reflector_: Reflector::new()
}
}