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

10 uses

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

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

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