const text/template/parse.NodeField

4 uses

	text/template/parse (current package)
		node.go#L61: 	NodeField                      // A field or method name.
		node.go#L502: 	return &FieldNode{tr: t, NodeType: NodeField, Pos: pos, Ident: strings.Split(ident[1:], ".")} // [1:] to drop leading period
		node.go#L523: 	return &FieldNode{tr: f.tr, NodeType: NodeField, Pos: f.Pos, Ident: append([]string{}, f.Ident...)}
		parse.go#L707: 		case NodeField: