Fix duplicated definition of a constant

This commit is contained in:
Alex Crichton 2018-02-16 19:06:48 -08:00
parent 3c58aa7310
commit 0970fa2998

View File

@ -7,7 +7,7 @@ use super::JsValue;
pub const DESCRIPTOR_CUSTOM_REF_FLAG: u32 = 0x1;
pub const DESCRIPTOR_NUMBER: u32 = 0x5e;
pub const DESCRIPTOR_BOOLEAN: u32 = 0x61;
pub const DESCRIPTOR_JS_OWNED: u32 = 0x62;
pub const DESCRIPTOR_JS_OWNED: u32 = 0x72;
pub trait WasmBoundary {
type Js: WasmAbi;