text/template/parse.ListNode.CopyList (method)

10 uses

	text/template/parse (current package)
		node.go#L112: func (l *ListNode) CopyList() *ListNode {
		node.go#L124: 	return l.CopyList()
		node.go#L909: 	return i.tr.newIf(i.Pos, i.Line, i.Pipe.CopyPipe(), i.List.CopyList(), i.ElseList.CopyList())
		node.go#L956: 	return r.tr.newRange(r.Pos, r.Line, r.Pipe.CopyPipe(), r.List.CopyList(), r.ElseList.CopyList())
		node.go#L969: 	return w.tr.newWith(w.Pos, w.Line, w.Pipe.CopyPipe(), w.List.CopyList(), w.ElseList.CopyList())
		parse.go#L53: 		Root:      t.Root.CopyList(),

	html/template
		escape.go#L646: 			dt.Tree = &parse.Tree{Name: dname, Root: t.Root.CopyList()}