type text/template/parse.WithNode

8 uses

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

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

	github.com/google/safehtml/template
		escape.go#L114: 	case *parse.WithNode:

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