mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Fixed codegen error regarding Uint8ClampedArray
This commit is contained in:
parent
fb5c1bef6f
commit
3036c8d21d
3 changed files with 5 additions and 4 deletions
|
@ -17,7 +17,7 @@ use dom::bindings::utils::{Reflector, Reflectable};
|
|||
use dom::blob::Blob;
|
||||
use servo_util::str::DOMString;
|
||||
|
||||
use js::jsapi::JSContext;
|
||||
use js::jsapi::{JSContext, JSObject};
|
||||
use js::jsval::{JSVal, NullValue};
|
||||
|
||||
#[dom_struct]
|
||||
|
@ -64,6 +64,7 @@ impl<'a> TestBindingMethods for JSRef<'a, TestBinding> {
|
|||
fn SetUnionAttribute(self, _: HTMLElementOrLong) {}
|
||||
fn Union2Attribute(self) -> EventOrString { eString("".to_string()) }
|
||||
fn SetUnion2Attribute(self, _: EventOrString) {}
|
||||
fn ArrayAttribute(self, _: *mut JSContext) -> *mut JSObject { NullValue().to_object_or_null() }
|
||||
fn AnyAttribute(self, _: *mut JSContext) -> JSVal { NullValue() }
|
||||
fn SetAnyAttribute(self, _: *mut JSContext, _: JSVal) {}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue