aboutsummaryrefslogtreecommitdiff
path: root/parser/lextype_string.go
diff options
context:
space:
mode:
authorNeonXP <i@neonxp.dev>2022-11-16 05:11:19 +0300
committerNeonXP <i@neonxp.dev>2022-11-16 05:11:19 +0300
commita321bfe7b2f6db5078de7b2e5ed5ddcccd65f319 (patch)
treed11c187bceee610a7843463949df128569142680 /parser/lextype_string.go
initial commit
Diffstat (limited to 'parser/lextype_string.go')
-rw-r--r--parser/lextype_string.go34
1 files changed, 34 insertions, 0 deletions
diff --git a/parser/lextype_string.go b/parser/lextype_string.go
new file mode 100644
index 0000000..f34eb7c
--- /dev/null
+++ b/parser/lextype_string.go
@@ -0,0 +1,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]]
+}