type text/template/parse.WithNode
7 uses
text/template/parse (current package)
node.go#L963: type WithNode struct {
node.go#L967: func (t *Tree) newWith(pos Pos, line int, pipe *PipeNode, list, elseList *ListNode) *WithNode {
node.go#L968: return &WithNode{BranchNode{tr: t, NodeType: NodeWith, Pos: pos, Line: line, Pipe: pipe, List: list, ElseList: elseList}}
node.go#L971: func (w *WithNode) Copy() Node {
parse.go#L289: case *WithNode:
text/template
exec.go#L290: case *parse.WithNode:
html/template
escape.go#L161: case *parse.WithNode: