type text/template/parse.elseNode

8 uses

	text/template/parse (current package)
		node.go#L807: type elseNode struct {
		node.go#L814: func (t *Tree) newElse(pos Pos, line int) *elseNode {
		node.go#L815: 	return &elseNode{tr: t, NodeType: nodeElse, Pos: pos, Line: line}
		node.go#L818: func (e *elseNode) Type() NodeType {
		node.go#L822: func (e *elseNode) String() string {
		node.go#L826: func (e *elseNode) writeTo(sb *strings.Builder) {
		node.go#L830: func (e *elseNode) tree() *Tree {
		node.go#L834: func (e *elseNode) Copy() Node {