summaryrefslogtreecommitdiffstats
path: root/vendor/modernc.org/ccgo/v3/lib/stringer.go
blob: dee785cadaa1c4d9fa9b5b1ed4830a3a9a924743 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// 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]]
}