type text/template/parse.ListNode

27 uses

	text/template/parse (current package)
		node.go#L79: type ListNode struct {
		node.go#L86: func (t *Tree) newList(pos Pos) *ListNode {
		node.go#L87: 	return &ListNode{tr: t, NodeType: NodeList, Pos: pos}
		node.go#L90: func (l *ListNode) append(n Node) {
		node.go#L94: func (l *ListNode) tree() *Tree {
		node.go#L98: func (l *ListNode) String() string {
		node.go#L104: func (l *ListNode) writeTo(sb *strings.Builder) {
		node.go#L110: func (l *ListNode) CopyList() *ListNode {
		node.go#L121: func (l *ListNode) Copy() Node {
		node.go#L845: 	List     *ListNode // What to execute if the value is non-empty.
		node.go#L846: 	ElseList *ListNode // What to execute if the value is empty (nil if absent).
		node.go#L902: func (t *Tree) newIf(pos Pos, line int, pipe *PipeNode, list, elseList *ListNode) *IfNode {
		node.go#L915: func (t *Tree) newRange(pos Pos, line int, pipe *PipeNode, list, elseList *ListNode) *RangeNode {
		node.go#L928: func (t *Tree) newWith(pos Pos, line int, pipe *PipeNode, list, elseList *ListNode) *WithNode {
		parse.go#L23: 	Root      *ListNode // top-level root of the tree.
		parse.go#L273: 	case *ListNode:
		parse.go#L343: func (t *Tree) itemList() (list *ListNode, next Node) {
		parse.go#L479: func (t *Tree) parseControl(allowElseIf bool, context string) (pos Pos, line int, pipe *PipeNode, list, elseList *ListNode) {

	text/template
		exec.go#L262: 	case *parse.ListNode:
		exec.go#L283: func (s *state) walkIfOrWith(typ parse.NodeType, dot reflect.Value, pipe *parse.PipeNode, list, elseList *parse.ListNode) {

	github.com/google/safehtml/template
		escape.go#L106: 	case *parse.ListNode:
		escape.go#L401: func (e *escaper) escapeList(c context, n *parse.ListNode) context {
		escape.go#L415: func (e *escaper) escapeListConditionally(c context, n *parse.ListNode, filter func(*escaper, context) bool) (context, bool) {

	html/template
		escape.go#L131: 	case *parse.ListNode:
		escape.go#L490: func (e *escaper) escapeList(c context, n *parse.ListNode) context {
		escape.go#L504: func (e *escaper) escapeListConditionally(c context, n *parse.ListNode, filter func(*escaper, context) bool) (context, bool) {