MCPcopy Create free account
hub / github.com/brimdata/super / Error

Method Error

compiler/semantic/analyzer.go:122–132  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

120type opCycleError []string
121
122func (e opCycleError) Error() string {
123 var b strings.Builder
124 b.WriteString("operator cycle found: ")
125 for i, op := range e {
126 if i > 0 {
127 b.WriteString(" -> ")
128 }
129 b.WriteString(op)
130 }
131 return b.String()
132}
133
134var (
135 badExpr = &sem.BadExpr{}

Callers

nothing calls this directly

Calls 1

StringMethod · 0.65

Tested by

no test coverage detected