MCPcopy
hub / github.com/google/mangle / Error

Method Error

symbols/decldesugar.go:78–80  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

76var _ error = &circularDepError{}
77
78func (c circularDepError) Error() string {
79 return fmt.Sprintf("circular dependency: %s", strings.Join(c.names, "->"))
80}
81
82func newCircularDependencyError(pred ast.PredicateSym, parent *circularDepError) circularDepError {
83 return circularDepError{names: []string{pred.Symbol}}

Calls

no outgoing calls