text/template/parse.ChainNode.Field (field)

8 uses

	text/template/parse (current package)
		node.go#L537: 	Field []string // The identifiers in lexical order.
		node.go#L553: 	c.Field = append(c.Field, field)
		node.go#L570: 	for _, field := range c.Field {
		node.go#L581: 	return &ChainNode{tr: c.tr, NodeType: NodeChain, Pos: c.Pos, Node: c.Node, Field: append([]string{}, c.Field...)}

	text/template
		exec.go#L635: 	if len(chain.Field) == 0 {
		exec.go#L643: 	return s.evalFieldChain(dot, pipe, chain, chain.Field, args, final)