| 513 | return std::holds_alternative<DefValType>(Type); |
| 514 | } |
| 515 | bool isFuncType() const noexcept { |
| 516 | return std::holds_alternative<FuncType>(Type); |
| 517 | } |
| 518 | bool isComponentType() const noexcept { |
| 519 | return std::holds_alternative<ComponentType>(Type); |
| 520 | } |
no outgoing calls