()
| 380 | } |
| 381 | |
| 382 | func (op OpCode) String() string { |
| 383 | str := opCodeToString[op] |
| 384 | if len(str) == 0 { |
| 385 | return fmt.Sprintf("Missing opcode 0x%x", int(op)) |
| 386 | } |
| 387 | |
| 388 | return str |
| 389 | } |
| 390 | |
| 391 | var stringToOp = map[string]OpCode{ |
| 392 | "STOP": STOP, |
no outgoing calls
no test coverage detected