aboutsummaryrefslogtreecommitdiff
path: root/parser/lextype_string.go
diff options
context:
space:
mode:
authorNeonXP <i@neonxp.dev>2022-12-27 02:37:02 +0300
committerNeonXP <i@neonxp.dev>2022-12-27 02:40:03 +0300
commit76a7f461ebbde70ea0e3d4f9b79c08139acaee7c (patch)
tree5e6dcb05f00be5109b3465ef16a6e9169a27497e /parser/lextype_string.go
parent6f1d1df79f161cfc695f74d271d689ba72c44d09 (diff)
Completely rewritedv0.1.0
Diffstat (limited to 'parser/lextype_string.go')
-rw-r--r--parser/lextype_string.go34
1 files changed, 0 insertions, 34 deletions
diff --git a/parser/lextype_string.go b/parser/lextype_string.go
deleted file mode 100644
index f34eb7c..0000000
--- a/parser/lextype_string.go
+++ /dev/null
@@ -1,34 +0,0 @@
-// 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]]
-}