Home
last modified time | relevance | path

Searched refs:NoSuchAttrError (Results 1 – 5 of 5) sorted by relevance

/external/starlark-go/starlarkstruct/
Dstruct.go231 return nil, starlark.NoSuchAttrError(
/external/starlark-go/starlark/
Dvalue.go341 type NoSuchAttrError string type
343 func (e NoSuchAttrError) Error() string { return string(e) }
Deval.go596 } else if nsa, ok := err.(NoSuchAttrError); ok {
614 if _, ok := err.(NoSuchAttrError); ok {
Deval_test.go244 return starlark.NoSuchAttrError(fmt.Sprintf("no .%s field", name))
/external/starlark-go/lib/proto/
Dproto.go788 return nil, starlark.NoSuchAttrError(fmt.Sprintf("%s has no .%s field", desc.FullName(), name))