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

14 uses

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

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

	github.com/google/safehtml/template
		escape.go#L122: 	if len(n.Pipe.Decl) != 0 {
		escape.go#L128: 	for pos, idNode := range n.Pipe.Cmds {
		escape.go#L142: 			if pos < len(n.Pipe.Cmds)-1 ||
		escape.go#L764: 		ensurePipelineContains(n.Pipe, s)

	html/template
		escape.go#L147: 	if len(n.Pipe.Decl) != 0 {
		escape.go#L153: 	for pos, idNode := range n.Pipe.Cmds {
		escape.go#L167: 			if pos < len(n.Pipe.Cmds)-1 ||
		escape.go#L817: 		ensurePipelineContains(n.Pipe, s)