NOLINTNEXTLINE(misc-no-recursion)
| 902 | |
| 903 | // NOLINTNEXTLINE(misc-no-recursion) |
| 904 | bool IsRange() const final |
| 905 | { |
| 906 | for (const auto& pubkey : m_pubkey_args) { |
| 907 | if (pubkey->IsRange()) return true; |
| 908 | } |
| 909 | for (const auto& arg : m_subdescriptor_args) { |
| 910 | if (arg->IsRange()) return true; |
| 911 | } |
| 912 | return false; |
| 913 | } |
| 914 | |
| 915 | // NOLINTNEXTLINE(misc-no-recursion) |
| 916 | virtual bool ToStringSubScriptHelper(const SigningProvider* arg, std::string& ret, const StringType type, const DescriptorCache* cache = nullptr) const |
no outgoing calls