@@ -77,6 +77,7 @@ impl<'de> Deserializer<'de> {
7777 clippy:: cast_precision_loss,
7878 clippy:: too_many_lines
7979 ) ]
80+ #[ iex:: iex]
8081 fn parse_float ( idx : usize , p : & [ u8 ] , negative : bool ) -> Result < StaticNode > {
8182 let mut digitcount = usize:: from ( negative) ;
8283 let mut i: f64 ;
@@ -222,6 +223,7 @@ impl<'de> Deserializer<'de> {
222223 #[ cfg( not( feature = "128bit" ) ) ]
223224 #[ inline( never) ]
224225 #[ allow( clippy:: cast_possible_wrap) ]
226+ #[ iex:: iex]
225227 fn parse_large_integer ( idx : usize , buf : & [ u8 ] , negative : bool ) -> Result < StaticNode > {
226228 let mut digitcount = usize:: from ( negative) ;
227229 let mut i: u64 ;
@@ -283,6 +285,7 @@ impl<'de> Deserializer<'de> {
283285 #[ cfg( feature = "128bit" ) ]
284286 #[ inline( never) ]
285287 #[ allow( clippy:: cast_possible_wrap) ]
288+ #[ iex:: iex]
286289 fn parse_large_integer ( idx : usize , buf : & [ u8 ] , negative : bool ) -> Result < StaticNode > {
287290 let mut digitcount = usize:: from ( negative) ;
288291 let mut i: u128 ;
@@ -358,6 +361,7 @@ impl<'de> Deserializer<'de> {
358361 clippy:: cast_possible_wrap,
359362 clippy:: too_many_lines
360363 ) ]
364+ #[ iex:: iex]
361365 pub ( crate ) fn parse_number ( idx : usize , buf : & [ u8 ] , negative : bool ) -> Result < StaticNode > {
362366 let buf = unsafe { buf. get_kinda_unchecked ( idx..) } ;
363367 let mut byte_count = usize:: from ( negative) ;
0 commit comments