add report to tests

This commit is contained in:
Jean-Marie 'Histausse' Mineau 2024-03-08 15:29:12 +01:00
parent d641929797
commit 675135f522
Signed by: histausse
GPG key ID: B66AEEDA9B645AD2
3 changed files with 31 additions and 2 deletions

View file

@ -18,6 +18,8 @@ pub struct DexFileReader<'a> {
/// This allows us to get the strings that are in a dex file but not used by its
/// classes. (Yes, they are some, looking at you `~~D8{"backend":"dex","compilation-mode":
/// "release","has-checksums":false,"min-api":24,"version":"8.2.42"}`)
///
/// Use AtomicBool to hide this inside &self methods that are easy to run concurrently.
string_was_resolved: Vec<AtomicBool>,
type_ids: Vec<TypeIdItem>,
proto_ids: Vec<ProtoIdItem>,