Searched defs:EvalError (Results 1 – 2 of 2) sorted by relevance
231 type EvalError struct { struct232 Msg string233 CallStack CallStack234 cause error259 func (e *EvalError) Error() string { return e.Msg }263 func (e *EvalError) Backtrace() string {275 func (e *EvalError) Unwrap() error { return e.cause }
80 TEST(TFUtilsTest, EvalError) { in TEST() argument