(id int)
| 23 | } |
| 24 | |
| 25 | func tokenIDToStr(id int) string { |
| 26 | str := tokenStrMap[id] |
| 27 | if str == "" { |
| 28 | panic(fmt.Sprintf("unknown tokenID=%d", id)) |
| 29 | } |
| 30 | return str |
| 31 | } |
| 32 | |
| 33 | type token struct { |
| 34 | ID int |
no outgoing calls
no test coverage detected
searching dependent graphs…