Peter Goodman
Peter Goodman
``` (lldb) p mx::EntityId(9417026824299347968).Unpack() (mx::VariantId) Active Type = mx::DeclId { Value = (fragment_id = 1051883, kind = ACCESS_SPEC, offset = 0, is_definition = false) } (lldb) p mx::EntityId(mx::DeclId{1051883, mx::DeclKind::ACCESS_SPEC, 0,...
It is a bit bizarre that it is finding an `ACCESS_SPEC` for an `ENUM`.
Fixed in #[e3572aa](https://github.com/trailofbits/multiplier/commit/e3572aab0555c7a45430db053d2d26da813e3403).
I am re-observing this issue.
This issue ultimately traces its roots back to PASTA. There, we'd perhaps want to add support for `APInt` in the form of gap multiprecision integers, so that PASTA's public API...
Ping @kumarak. I no longer have reviewer privileges here ðŸ˜.
I think one low/medium effort way to achieve this could be the following: - [ ] Extract out the data for files from inside the rpc::File, and put it into...
Something like this might help... ```c++ static std::string FixedQuery(std::string query) { std::string out; auto in_string = false; auto needs_and = false; for (auto ch : query) { if (std::isalnum(ch)) {...
Similar things should happen for `typedef`s wrapping structures.