start separating classes in files

This commit is contained in:
Jean-Marie Mineau 2025-01-14 20:29:17 +01:00
parent 4b28d0a406
commit 91859170c3
Signed by: histausse
GPG key ID: B66AEEDA9B645AD2
2 changed files with 157 additions and 29 deletions

View file

@ -678,7 +678,7 @@ mod test {
fn test_get_expl_debug() {
const RAW_DEBUG: [u8; 10] = [23, 0, 14, 135, 3, 0, 16, 2, 150, 0];
let debug = DebugInfoItem::deserialize_from_slice(&RAW_DEBUG).unwrap();
let mut reader = DebugInfoReader::new(&debug);
let mut reader = DebugInfoReader::new(debug.clone());
let mut list_info = vec![];
loop {
list_info.push(reader.next_info());