Home
last modified time | relevance | path

Searched defs:EvalError (Results 1 – 2 of 2) sorted by relevance

/external/starlark-go/starlark/
Deval.go231 type EvalError struct { struct
232 Msg string
233 CallStack CallStack
234 cause error
259 func (e *EvalError) Error() string { return e.Msg }
263 func (e *EvalError) Backtrace() string {
275 func (e *EvalError) Unwrap() error { return e.cause }
/external/llvm-project/llvm/unittests/Analysis/
DTFUtilsTest.cpp80 TEST(TFUtilsTest, EvalError) { in TEST() argument