()
| 27 | ) |
| 28 | |
| 29 | func (i opcode) String() string { |
| 30 | switch { |
| 31 | case 0 <= i && i <= 2: |
| 32 | return _opcode_name_0[_opcode_index_0[i]:_opcode_index_0[i+1]] |
| 33 | case 8 <= i && i <= 10: |
| 34 | i -= 8 |
| 35 | return _opcode_name_1[_opcode_index_1[i]:_opcode_index_1[i+1]] |
| 36 | default: |
| 37 | return "opcode(" + strconv.FormatInt(int64(i), 10) + ")" |
| 38 | } |
| 39 | } |
| 40 | func _() { |
| 41 | // An "invalid array index" compiler error signifies that the constant values have changed. |
| 42 | // Re-run the stringer command to generate them again. |
no outgoing calls