pub const EvalToError = enum
pub const EvalToError = enum {
/// The builtin cannot possibly evaluate to an error.
never,
/// The builtin will always evaluate to an error.
always,
/// The builtin may or may not evaluate to an error depending on the parameters.
maybe,
}