summaryrefslogtreecommitdiff
path: root/vendor/modernc.org/ccgo/v3/lib/stringer.go
diff options
context:
space:
mode:
authorLibravatar dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2024-03-04 09:42:11 +0000
committerLibravatar GitHub <noreply@github.com>2024-03-04 09:42:11 +0000
commitadb4cdcf6c9eacd369eaaf5b21774b198d57c040 (patch)
treea4f9c8fe2ce147fa952bcb795690afb9bb2affcb /vendor/modernc.org/ccgo/v3/lib/stringer.go
parent[bugfix] update postgresqlstmt to correctly use postgres err hook (#2711) (diff)
downloadgotosocial-adb4cdcf6c9eacd369eaaf5b21774b198d57c040.tar.xz
[chore]: Bump modernc.org/sqlite from 1.28.0 to 1.29.2 (#2718)
Diffstat (limited to 'vendor/modernc.org/ccgo/v3/lib/stringer.go')
-rw-r--r--vendor/modernc.org/ccgo/v3/lib/stringer.go58
1 files changed, 0 insertions, 58 deletions
diff --git a/vendor/modernc.org/ccgo/v3/lib/stringer.go b/vendor/modernc.org/ccgo/v3/lib/stringer.go
deleted file mode 100644
index dee785cad..000000000
--- a/vendor/modernc.org/ccgo/v3/lib/stringer.go
+++ /dev/null
@@ -1,58 +0,0 @@
-// Code generated by "stringer -output stringer.go -type=exprMode,opKind"; DO NOT EDIT.
-
-package ccgo
-
-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[exprAddrOf-1]
- _ = x[exprBool-2]
- _ = x[exprCondInit-3]
- _ = x[exprCondReturn-4]
- _ = x[exprDecay-5]
- _ = x[exprFunc-6]
- _ = x[exprLValue-7]
- _ = x[exprPSelect-8]
- _ = x[exprSelect-9]
- _ = x[exprValue-10]
- _ = x[exprVoid-11]
- _ = x[exprGoPtr-12]
-}
-
-const _exprMode_name = "exprAddrOfexprBoolexprCondInitexprCondReturnexprDecayexprFuncexprLValueexprPSelectexprSelectexprValueexprVoidexprGoPtr"
-
-var _exprMode_index = [...]uint8{0, 10, 18, 30, 44, 53, 61, 71, 82, 92, 101, 109, 118}
-
-func (i exprMode) String() string {
- i -= 1
- if i < 0 || i >= exprMode(len(_exprMode_index)-1) {
- return "exprMode(" + strconv.FormatInt(int64(i+1), 10) + ")"
- }
- return _exprMode_name[_exprMode_index[i]:_exprMode_index[i+1]]
-}
-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[opNormal-0]
- _ = x[opArray-1]
- _ = x[opArrayParameter-2]
- _ = x[opFunction-3]
- _ = x[opUnion-4]
- _ = x[opBitfield-5]
- _ = x[opStruct-6]
-}
-
-const _opKind_name = "opNormalopArrayopArrayParameteropFunctionopUnionopBitfieldopStruct"
-
-var _opKind_index = [...]uint8{0, 8, 15, 31, 41, 48, 58, 66}
-
-func (i opKind) String() string {
- if i < 0 || i >= opKind(len(_opKind_index)-1) {
- return "opKind(" + strconv.FormatInt(int64(i), 10) + ")"
- }
- return _opKind_name[_opKind_index[i]:_opKind_index[i+1]]
-}