const text/template/parse.NodeVariable

4 uses

	text/template/parse (current package)
		node.go#L71: 	NodeVariable                   // A $ variable.
		node.go#L397: 	return &VariableNode{tr: t, NodeType: NodeVariable, Pos: pos, Ident: strings.Split(ident, ".")}
		node.go#L420: 	return &VariableNode{tr: v.tr, NodeType: NodeVariable, Pos: v.Pos, Ident: append([]string{}, v.Ident...)}
		parse.go#L709: 		case NodeVariable: