| 181 | } |
| 182 | bool isAlias() const noexcept { return std::holds_alternative<Alias>(Decl); } |
| 183 | bool isExportDecl() const noexcept { |
| 184 | return std::holds_alternative<ExportDecl>(Decl); |
| 185 | } |
| 186 | |
| 187 | private: |
| 188 | std::variant<std::unique_ptr<CoreDefType>, std::unique_ptr<DefType>, Alias, |
no outgoing calls
no test coverage detected