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

8 uses

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

	text/template
		exec.go#L603: 		!isHexInt(constant.Text) && !isRuneInt(constant.Text) &&
		exec.go#L604: 		strings.ContainsAny(constant.Text, ".eEpP"):
		exec.go#L610: 			s.errorf("%s overflows int", constant.Text)
		exec.go#L615: 		s.errorf("%s overflows int", constant.Text)