Skip to content

Commit af001f0

Browse files
nickysnalehander92
authored andcommitted
chore: added todo!()'s for all the missing types in write_trace()
1 parent 3b5d8d8 commit af001f0

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

runtime_tracing/src/capnptrace.rs

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -409,9 +409,14 @@ pub fn write_trace(q: &[crate::TraceLowLevelEvent], output: &mut impl std::io::W
409409
},
410410
}
411411
}
412-
_ => {
413-
eprintln!("Not yet implemented: {:?}", qq);
414-
}
412+
TraceLowLevelEvent::DropVariables(vars) => todo!(),
413+
TraceLowLevelEvent::CompoundValue(cvr) => todo!(),
414+
TraceLowLevelEvent::CellValue(cvr) => todo!(),
415+
TraceLowLevelEvent::AssignCompoundItem(aci) => todo!(),
416+
TraceLowLevelEvent::AssignCell(acr) => todo!(),
417+
TraceLowLevelEvent::VariableCell(vcr) => todo!(),
418+
TraceLowLevelEvent::DropVariable(varid) => todo!(),
419+
TraceLowLevelEvent::DropLastStep => todo!(),
415420
}
416421
}
417422

0 commit comments

Comments
 (0)