| 510 | } |
| 511 | |
| 512 | std::string AddressType::toString(bool) const |
| 513 | { |
| 514 | if (m_stateMutability == StateMutability::Payable) |
| 515 | return "address payable"; |
| 516 | else |
| 517 | return "address"; |
| 518 | } |
| 519 | |
| 520 | std::string AddressType::canonicalName() const |
| 521 | { |
no test coverage detected