| 165 | |
| 166 | const Alias &getAlias() const noexcept { return *std::get_if<Alias>(&Decl); } |
| 167 | void setAlias(Alias &&A) noexcept { Decl.emplace<Alias>(std::move(A)); } |
| 168 | |
| 169 | const ExportDecl &getExport() const noexcept { |
| 170 | return *std::get_if<ExportDecl>(&Decl); |