type text/template/parse.IfNode

8 uses

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

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

	github.com/google/safehtml/template
		escape.go#L104: 	case *parse.IfNode:

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