type text/template/parse.WithNode

7 uses

	text/template/parse (current package)
		node.go#L960: type WithNode struct {
		node.go#L964: func (t *Tree) newWith(pos Pos, line int, pipe *PipeNode, list, elseList *ListNode) *WithNode {
		node.go#L965: 	return &WithNode{BranchNode{tr: t, NodeType: NodeWith, Pos: pos, Line: line, Pipe: pipe, List: list, ElseList: elseList}}
		node.go#L968: func (w *WithNode) Copy() Node {
		parse.go#L287: 	case *WithNode:

	text/template
		exec.go#L284: 	case *parse.WithNode:

	html/template
		escape.go#L157: 	case *parse.WithNode: