1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-30 11:43:15 +02:00

Add EvalErrorBuilder::panic()

An nicer alternative to printError + abort, or assert(false /* foo */)
This commit is contained in:
Robert Hensing 2024-07-11 11:35:58 +02:00
parent 13522229a9
commit 61577402ba
2 changed files with 14 additions and 0 deletions

View file

@ -92,6 +92,14 @@ void EvalErrorBuilder<T>::debugThrow()
throw error;
}
template<class T>
void EvalErrorBuilder<T>::panic()
{
logError(error.info());
printError("This is a bug! An unexpected condition occurred, causing the Nix evaluator to have to stop. If you could share a reproducible example or a core dump, please open an issue at https://github.com/NixOS/nix/issues");
abort();
}
template class EvalErrorBuilder<EvalBaseError>;
template class EvalErrorBuilder<EvalError>;
template class EvalErrorBuilder<AssertionError>;