@@ -1535,10 +1535,15 @@ impl ToTokens for ast::Enum {
1535
1535
let name_len = name_str. len ( ) as u32 ;
1536
1536
let name_chars = name_str. chars ( ) . map ( |c| c as u32 ) ;
1537
1537
let hole = & self . hole ;
1538
+ let underlying = if self . signed {
1539
+ quote ! { i32 }
1540
+ } else {
1541
+ quote ! { u32 }
1542
+ } ;
1538
1543
let cast_clauses = self . variants . iter ( ) . map ( |variant| {
1539
1544
let variant_name = & variant. name ;
1540
1545
quote ! {
1541
- if js == #enum_name:: #variant_name as u32 {
1546
+ if js == #enum_name:: #variant_name as #underlying {
1542
1547
#enum_name:: #variant_name
1543
1548
}
1544
1549
}
@@ -1548,20 +1553,20 @@ impl ToTokens for ast::Enum {
1548
1553
( quote ! {
1549
1554
#[ automatically_derived]
1550
1555
impl #wasm_bindgen:: convert:: IntoWasmAbi for #enum_name {
1551
- type Abi = u32 ;
1556
+ type Abi = #underlying ;
1552
1557
1553
1558
#[ inline]
1554
- fn into_abi( self ) -> u32 {
1555
- self as u32
1559
+ fn into_abi( self ) -> #underlying {
1560
+ self as #underlying
1556
1561
}
1557
1562
}
1558
1563
1559
1564
#[ automatically_derived]
1560
1565
impl #wasm_bindgen:: convert:: FromWasmAbi for #enum_name {
1561
- type Abi = u32 ;
1566
+ type Abi = #underlying ;
1562
1567
1563
1568
#[ inline]
1564
- unsafe fn from_abi( js: u32 ) -> Self {
1569
+ unsafe fn from_abi( js: #underlying ) -> Self {
1565
1570
#( #cast_clauses else) * {
1566
1571
#wasm_bindgen:: throw_str( "invalid enum value passed" )
1567
1572
}
@@ -1571,13 +1576,13 @@ impl ToTokens for ast::Enum {
1571
1576
#[ automatically_derived]
1572
1577
impl #wasm_bindgen:: convert:: OptionFromWasmAbi for #enum_name {
1573
1578
#[ inline]
1574
- fn is_none( val: & u32 ) -> bool { * val == #hole }
1579
+ fn is_none( val: & Self :: Abi ) -> bool { * val == #hole as #underlying }
1575
1580
}
1576
1581
1577
1582
#[ automatically_derived]
1578
1583
impl #wasm_bindgen:: convert:: OptionIntoWasmAbi for #enum_name {
1579
1584
#[ inline]
1580
- fn none( ) -> Self :: Abi { #hole }
1585
+ fn none( ) -> Self :: Abi { #hole as #underlying }
1581
1586
}
1582
1587
1583
1588
#[ automatically_derived]
@@ -1597,7 +1602,7 @@ impl ToTokens for ast::Enum {
1597
1602
#wasm_bindgen:: JsValue
1598
1603
{
1599
1604
fn from( value: #enum_name) -> Self {
1600
- #wasm_bindgen:: JsValue :: from_f64( ( value as u32 ) . into( ) )
1605
+ #wasm_bindgen:: JsValue :: from_f64( ( value as #underlying ) . into( ) )
1601
1606
}
1602
1607
}
1603
1608
@@ -1608,7 +1613,7 @@ impl ToTokens for ast::Enum {
1608
1613
fn try_from_js_value( value: #wasm_bindgen:: JsValue )
1609
1614
-> #wasm_bindgen:: __rt:: core:: result:: Result <Self , <#enum_name as #wasm_bindgen:: convert:: TryFromJsValue >:: Error > {
1610
1615
use #wasm_bindgen:: __rt:: core:: convert:: TryFrom ;
1611
- let js = f64 :: try_from( & value) ? as u32 ;
1616
+ let js = f64 :: try_from( & value) ? as #underlying ;
1612
1617
1613
1618
#wasm_bindgen:: __rt:: core:: result:: Result :: Ok (
1614
1619
#( #try_from_cast_clauses else) * {
0 commit comments