55use crate :: {
66 error:: { panic:: ToNativeAssertError , Error as CoreLibfuncBuilderError , Result } ,
77 metadata:: MetadataStorage ,
8+ native_panic,
89 types:: TypeBuilder ,
910 utils:: BlockExt ,
1011} ;
@@ -145,7 +146,7 @@ impl LibfuncBuilder for CoreConcreteLibfunc {
145146 Self :: Debug ( selector) => self :: debug:: build (
146147 context, registry, entry, location, helper, metadata, selector,
147148 ) ,
148- Self :: Trace ( _) => todo ! ( "Implement trace libfunc" ) ,
149+ Self :: Trace ( _) => native_panic ! ( "Implement trace libfunc" ) ,
149150 Self :: Drop ( info) => {
150151 self :: drop:: build ( context, registry, entry, location, helper, metadata, info)
151152 }
@@ -165,7 +166,7 @@ impl LibfuncBuilder for CoreConcreteLibfunc {
165166 context, registry, entry, location, helper, metadata, selector,
166167 ) ,
167168 Self :: Felt252SquashedDict ( _) => {
168- todo ! ( "Implement felt252_squashed_dict libfunc" )
169+ native_panic ! ( "Implement felt252_squashed_dict libfunc" )
169170 }
170171 Self :: Felt252DictEntry ( selector) => self :: felt252_dict_entry:: build (
171172 context, registry, entry, location, helper, metadata, selector,
0 commit comments