-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathkind_string.go
More file actions
35 lines (30 loc) · 784 Bytes
/
kind_string.go
File metadata and controls
35 lines (30 loc) · 784 Bytes
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
// Code generated by "stringer -linecomment -type Kind"; DO NOT EDIT.
package sym
import "strconv"
const _Kind_name = "125680828486888a8c8e90929496overlayset overlay"
var _Kind_map = map[Kind]string{
1: _Kind_name[0:1],
2: _Kind_name[1:2],
5: _Kind_name[2:3],
6: _Kind_name[3:4],
128: _Kind_name[4:6],
130: _Kind_name[6:8],
132: _Kind_name[8:10],
134: _Kind_name[10:12],
136: _Kind_name[12:14],
138: _Kind_name[14:16],
140: _Kind_name[16:18],
142: _Kind_name[18:20],
144: _Kind_name[20:22],
146: _Kind_name[22:24],
148: _Kind_name[24:26],
150: _Kind_name[26:28],
152: _Kind_name[28:35],
154: _Kind_name[35:46],
}
func (i Kind) String() string {
if str, ok := _Kind_map[i]; ok {
return str
}
return "Kind(" + strconv.FormatInt(int64(i), 10) + ")"
}