type text/template/parse.ContinueNode

10 uses

	text/template/parse (current package)
		node.go#L930: type ContinueNode struct {
		node.go#L937: func (t *Tree) newContinue(pos Pos, line int) *ContinueNode {
		node.go#L938: 	return &ContinueNode{tr: t, NodeType: NodeContinue, Pos: pos, Line: line}
		node.go#L941: func (c *ContinueNode) Copy() Node                  { return c.tr.newContinue(c.Pos, c.Line) }
		node.go#L942: func (c *ContinueNode) String() string              { return "{{continue}}" }
		node.go#L943: func (c *ContinueNode) tree() *Tree                 { return c.tr }
		node.go#L944: func (c *ContinueNode) writeTo(sb *strings.Builder) { sb.WriteString("{{continue}}") }

	text/template
		exec.go#L268: 	case *parse.ContinueNode:

	html/template
		escape.go#L143: 	case *parse.ContinueNode:
		escape.go#L546: 			c0.err.Line = c.n.(*parse.ContinueNode).Line