MCPcopy Create free account
hub / github.com/expr-lang/expr / String

Method String

ast/print.go:205–211  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

203}
204
205func (n *SequenceNode) String() string {
206 nodes := make([]string, len(n.Nodes))
207 for i, node := range n.Nodes {
208 nodes[i] = node.String()
209 }
210 return strings.Join(nodes, "; ")
211}
212
213func (n *ConditionalNode) String() string {
214 if !n.Ternary {

Callers

nothing calls this directly

Calls 1

StringMethod · 0.65

Tested by

no test coverage detected