Home
last modified time | relevance | path

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

/aosp_15_r20/external/starlark-go/starlark/
H A 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 }
/aosp_15_r20/development/vndk/tools/sourcedr/ninja/
H A Dninja.py84 class EvalError(ValueError): class