File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " runtime_tracing"
3- version = " 0.9 .0"
3+ version = " 0.10 .0"
44edition = " 2021"
55authors = [" Metacraft Labs Ltd" ]
66description = " A library for the schema and tracing helpers for the CodeTracer db trace format"
Original file line number Diff line number Diff line change @@ -117,13 +117,14 @@ mod tests {
117117 let reference_type = TypeRecord {
118118 kind : TypeKind :: Pointer ,
119119 lang_type : "MyReference<Int>" . to_string ( ) ,
120- specific_info : TypeSpecificInfo :: Pointer {
121- dereference_type_id : tracer. ensure_type_id ( TypeKind :: Int , "Int" )
122- }
120+ specific_info : TypeSpecificInfo :: Pointer {
121+ dereference_type_id : tracer. ensure_type_id ( TypeKind :: Int , "Int" ) ,
122+ } ,
123123 } ;
124124 let reference_type_id = tracer. ensure_raw_type_id ( reference_type) ;
125125 let _reference_value = ValueRecord :: Reference {
126126 dereferenced : Box :: new ( int_value_1. clone ( ) ) ,
127+ address : 0 ,
127128 mutable : false ,
128129 type_id : reference_type_id,
129130 } ;
Original file line number Diff line number Diff line change @@ -362,6 +362,7 @@ pub enum ValueRecord {
362362 // or more fields (address?)
363363 Reference {
364364 dereferenced : Box < ValueRecord > ,
365+ address : u64 ,
365366 mutable : bool ,
366367 type_id : TypeId ,
367368 } ,
You can’t perform that action at this time.
0 commit comments