text/template/parse.ActionNode.Pipe (field)

10 uses

	text/template/parse (current package)
		node.go#L266: 	Pipe *PipeNode // The pipeline in the action.
		node.go#L270: 	return &ActionNode{tr: t, NodeType: NodeAction, Pos: pos, Line: line, Pipe: pipe}
		node.go#L281: 	a.Pipe.writeTo(sb)
		node.go#L290: 	return a.tr.newAction(a.Pos, a.Line, a.Pipe.CopyPipe())

	text/template
		exec.go#L267: 		val := s.evalPipeline(dot, node.Pipe)
		exec.go#L268: 		if len(node.Pipe.Decl) == 0 {

	html/template
		escape.go#L171: 	if len(n.Pipe.Decl) != 0 {
		escape.go#L177: 	for pos, idNode := range n.Pipe.Cmds {
		escape.go#L191: 			if pos < len(n.Pipe.Cmds)-1 ||
		escape.go#L922: 		ensurePipelineContains(n.Pipe, s)