type text/template/parse.FieldNode

12 uses

	text/template/parse (current package)
		node.go#L497: type FieldNode struct {
		node.go#L504: func (t *Tree) newField(pos Pos, ident string) *FieldNode {
		node.go#L505: 	return &FieldNode{tr: t, NodeType: NodeField, Pos: pos, Ident: strings.Split(ident[1:], ".")} // [1:] to drop leading period
		node.go#L508: func (f *FieldNode) String() string {
		node.go#L514: func (f *FieldNode) writeTo(sb *strings.Builder) {
		node.go#L521: func (f *FieldNode) tree() *Tree {
		node.go#L525: func (f *FieldNode) Copy() Node {
		node.go#L526: 	return &FieldNode{tr: f.tr, NodeType: NodeField, Pos: f.Pos, Ident: append([]string{}, f.Ident...)}

	text/template
		exec.go#L557: 	case *parse.FieldNode:
		exec.go#L628: func (s *state) evalFieldNode(dot reflect.Value, field *parse.FieldNode, args []parse.Node, final reflect.Value) reflect.Value {
		exec.go#L944: 	case *parse.FieldNode:
		exec.go#L1053: 	case *parse.FieldNode: