MCPcopy Create free account
hub / github.com/CloudyKit/jet / String

Method String

node.go:273–282  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

271}
272
273func (c *ChainNode) String() string {
274 s := c.Node.String()
275 if _, ok := c.Node.(*PipeNode); ok {
276 s = "(" + s + ")"
277 }
278 for _, field := range c.Field {
279 s += "." + field
280 }
281 return s
282}
283
284// BoolNode holds a boolean constant.
285type BoolNode struct {

Callers

nothing calls this directly

Calls 1

StringMethod · 0.65

Tested by

no test coverage detected