type text/template/parse.CommentNode

11 uses

	text/template/parse (current package)
		node.go#L156: type CommentNode struct {
		node.go#L163: func (t *Tree) newComment(pos Pos, text string) *CommentNode {
		node.go#L164: 	return &CommentNode{tr: t, NodeType: NodeComment, Pos: pos, Text: text}
		node.go#L167: func (c *CommentNode) String() string {
		node.go#L173: func (c *CommentNode) writeTo(sb *strings.Builder) {
		node.go#L179: func (c *CommentNode) tree() *Tree {
		node.go#L183: func (c *CommentNode) Copy() Node {
		node.go#L184: 	return &CommentNode{tr: c.tr, NodeType: NodeComment, Pos: c.Pos, Text: c.Text}
		parse.go#L273: 	case *CommentNode:

	text/template
		exec.go#L267: 	case *parse.CommentNode:

	html/template
		escape.go#L141: 	case *parse.CommentNode: