| 655 | } |
| 656 | |
| 657 | uint32_t Signature::GetNumberOfParameters() const { |
| 658 | const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_); |
| 659 | return (params != nullptr) ? params->Size() : 0; |
| 660 | } |
| 661 | |
| 662 | bool Signature::IsVoid() const { |
| 663 | const char* return_type = dex_file_->GetReturnTypeDescriptor(*proto_id_); |
no test coverage detected