text/template/parse.TemplateNode.Line (field)

4 uses

	text/template/parse (current package)
		node.go#L977: 	Line int       // The line number in the input. Deprecated: Kept for compatibility.
		node.go#L983: 	return &TemplateNode{tr: t, NodeType: NodeTemplate, Pos: pos, Line: line, Name: name, Pipe: pipe}
		node.go#L1007: 	return t.tr.newTemplate(t.Pos, t.Line, t.Name, t.Pipe.CopyPipe())

	html/template
		escape.go#L607: 	c, name := e.escapeTree(c, n, n.Name, n.Line)