start separating classes in files
This commit is contained in:
parent
4b28d0a406
commit
91859170c3
2 changed files with 157 additions and 29 deletions
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue