| 177 | return std::holds_alternative<std::unique_ptr<CoreDefType>>(Decl); |
| 178 | } |
| 179 | bool isType() const noexcept { |
| 180 | return std::holds_alternative<std::unique_ptr<DefType>>(Decl); |
| 181 | } |
| 182 | bool isAlias() const noexcept { return std::holds_alternative<Alias>(Decl); } |
| 183 | bool isExportDecl() const noexcept { |
| 184 | return std::holds_alternative<ExportDecl>(Decl); |
no outgoing calls
no test coverage detected