type text/template/parse.IfNode

7 uses

	text/template/parse (current package)
		node.go#L903: type IfNode struct {
		node.go#L907: func (t *Tree) newIf(pos Pos, line int, pipe *PipeNode, list, elseList *ListNode) *IfNode {
		node.go#L908: 	return &IfNode{BranchNode{tr: t, NodeType: NodeIf, Pos: pos, Line: line, Pipe: pipe, List: list, ElseList: elseList}}
		node.go#L911: func (i *IfNode) Copy() Node {
		parse.go#L277: 	case *IfNode:

	text/template
		exec.go#L276: 	case *parse.IfNode:

	html/template
		escape.go#L151: 	case *parse.IfNode: