type text/template/parse.IfNode
7 uses
text/template/parse (current package)
node.go#L900: type IfNode struct {
node.go#L904: func (t *Tree) newIf(pos Pos, line int, pipe *PipeNode, list, elseList *ListNode) *IfNode {
node.go#L905: return &IfNode{BranchNode{tr: t, NodeType: NodeIf, Pos: pos, Line: line, Pipe: pipe, List: list, ElseList: elseList}}
node.go#L908: func (i *IfNode) Copy() Node {
parse.go#L275: case *IfNode:
text/template
exec.go#L270: case *parse.IfNode:
html/template
escape.go#L147: case *parse.IfNode: