| 264 | return Unexpect(Code); |
| 265 | } |
| 266 | inline Unexpected<ErrCode> logNeedProposal(ErrCode Code, Proposal Prop, |
| 267 | uint64_t Off, |
| 268 | ASTNodeAttr Node) const noexcept { |
| 269 | spdlog::error(Code); |
| 270 | spdlog::error(ErrInfo::InfoProposal(Prop)); |
| 271 | spdlog::error(ErrInfo::InfoLoading(Off)); |
| 272 | spdlog::error(ErrInfo::InfoAST(Node)); |
| 273 | return Unexpect(Code); |
| 274 | } |
| 275 | /// @} |
| 276 | |
| 277 | /// \name Load AST Module functions |
nothing calls this directly
no test coverage detected