serialize part of the debug info item

This commit is contained in:
Jean-Marie Mineau 2024-02-15 12:15:45 +01:00
parent 6637745cdf
commit 0b8dce9266
Signed by: histausse
GPG key ID: B66AEEDA9B645AD2
4 changed files with 32 additions and 13 deletions

View file

@ -15,7 +15,7 @@ pub struct DexFileReader<'a> {
header: HeaderItem,
string_ids: Vec<StringIdItem>,
/// If `string_was_resolved[string_idx]` is true, the string was resolved at some point.
/// This alows us to get the strings that are in a dex file but not used by its
/// 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"}`)
string_was_resolved: Vec<AtomicBool>,