text/template/parse.NumberNode.Text (field)

8 uses

	text/template/parse (current package)
		node.go#L627: 	Text       string     // The original textual representation from the input.
		node.go#L631: 	n := &NumberNode{tr: t, NodeType: NodeNumber, Pos: pos, Text: text}
		node.go#L734: 	return n.Text

	text/template
		exec.go#L528: 		!isHexInt(constant.Text) && !isRuneInt(constant.Text) &&
		exec.go#L529: 		strings.ContainsAny(constant.Text, ".eEpP"):
		exec.go#L535: 			s.errorf("%s overflows int", constant.Text)
		exec.go#L540: 		s.errorf("%s overflows int", constant.Text)