type text/template/parse.CommandNode

22 uses

	text/template/parse (current package)
		node.go#L193: 	Cmds     []*CommandNode  // The commands in lexical order.
		node.go#L200: func (p *PipeNode) append(command *CommandNode) {
		node.go#L243: 		n.append(c.Copy().(*CommandNode))
		node.go#L289: type CommandNode struct {
		node.go#L296: func (t *Tree) newCommand(pos Pos) *CommandNode {
		node.go#L297: 	return &CommandNode{tr: t, NodeType: NodeCommand, Pos: pos}
		node.go#L300: func (c *CommandNode) append(arg Node) {
		node.go#L304: func (c *CommandNode) String() string {
		node.go#L310: func (c *CommandNode) writeTo(sb *strings.Builder) {
		node.go#L325: func (c *CommandNode) tree() *Tree {
		node.go#L329: func (c *CommandNode) Copy() Node {
		parse.go#L620: func (t *Tree) command() *CommandNode {

	text/template
		exec.go#L458: func (s *state) evalCommand(dot reflect.Value, cmd *parse.CommandNode, final reflect.Value) reflect.Value {

	github.com/google/safehtml/template
		escape.go#L215: 	newCmds := make([]*parse.CommandNode, pipelineLen, pipelineLen+len(s))
		escape.go#L265: func newIdentCmd(identifier string, pos parse.Pos) *parse.CommandNode {
		escape.go#L266: 	return &parse.CommandNode{

	html/template
		escape.go#L287: 	newCmds := make([]*parse.CommandNode, pipelineLen, pipelineLen+len(s))
		escape.go#L374: func appendCmd(cmds []*parse.CommandNode, cmd *parse.CommandNode) []*parse.CommandNode {
		escape.go#L386: func newIdentCmd(identifier string, pos parse.Pos) *parse.CommandNode {
		escape.go#L387: 	return &parse.CommandNode{