aboutsummaryrefslogtreecommitdiff
path: root/parser/lextype_string.go
blob: f34eb7ca22b1ddf7b5a5f6efe99f5858b91ff7e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Code generated by "stringer -type=lexType"; DO NOT EDIT.

package parser

import "strconv"

func _() {
	// An "invalid array index" compiler error signifies that the constant values have changed.
	// Re-run the stringer command to generate them again.
	var x [1]struct{}
	_ = x[lEOF-0]
	_ = x[lError-1]
	_ = x[lObjectStart-2]
	_ = x[lObjectEnd-3]
	_ = x[lObjectKey-4]
	_ = x[lObjectValue-5]
	_ = x[lArrayStart-6]
	_ = x[lArrayEnd-7]
	_ = x[lString-8]
	_ = x[lNumber-9]
	_ = x[lBoolean-10]
	_ = x[lNull-11]
}

const _lexType_name = "lEOFlErrorlObjectStartlObjectEndlObjectKeylObjectValuelArrayStartlArrayEndlStringlNumberlBooleanlNull"

var _lexType_index = [...]uint8{0, 4, 10, 22, 32, 42, 54, 65, 74, 81, 88, 96, 101}

func (i lexType) String() string {
	if i < 0 || i >= lexType(len(_lexType_index)-1) {
		return "lexType(" + strconv.FormatInt(int64(i), 10) + ")"
	}
	return _lexType_name[_lexType_index[i]:_lexType_index[i+1]]
}