| 29 | public: |
| 30 | MethodReference(const DexFile* file, uint32_t index) : DexFileReference(file, index) {} |
| 31 | std::string PrettyMethod(bool with_signature = true) const { |
| 32 | return dex_file->PrettyMethod(index, with_signature); |
| 33 | } |
| 34 | const DexFile::MethodId& GetMethodId() const { |
| 35 | return dex_file->GetMethodId(index); |
| 36 | } |
nothing calls this directly
no outgoing calls
no test coverage detected