Rename get_wrappercache() to reflector(). v1

I also updated some variable names in the codegen.
This commit is contained in:
Bobby Holley 2013-10-08 20:36:56 +02:00
parent 2cbe2d7ce9
commit 62ddac8b6f
30 changed files with 60 additions and 60 deletions

View file

@ -149,8 +149,8 @@ impl HTMLElement {
}
impl Reflectable for HTMLElement {
fn get_wrappercache(&mut self) -> &mut Reflector {
self.element.get_wrappercache()
fn reflector(&mut self) -> &mut Reflector {
self.element.reflector()
}
fn wrap_object_shared(@mut self, cx: *JSContext, scope: *JSObject) -> *JSObject {