summaryrefslogtreecommitdiff
path: root/src/mongo/gotools/common/json/hex.go
blob: 625dcab6493c4c3a12869549abdf852dd06229d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package json

// Transition function for recognizing hexadecimal numbers.
// Adapted from encoding/json/scanner.go.

// stateHex is the state after reading `0x` or `0X`.
func stateHex(s *scanner, c int) int {
	if '0' <= c && c <= '9' || 'a' <= c && c <= 'f' || 'A' <= c && c <= 'F' {
		s.step = stateHex
		return scanContinue
	}
	return stateEndValue(s, c)
}