| 533 | }; |
| 534 | |
| 535 | bool IsSolvable() const override |
| 536 | { |
| 537 | for (const auto& arg : m_subdescriptor_args) { |
| 538 | if (!arg->IsSolvable()) return false; |
| 539 | } |
| 540 | return true; |
| 541 | } |
| 542 | |
| 543 | bool IsRange() const final |
| 544 | { |
nothing calls this directly
no test coverage detected