(vm *VM)
| 22 | } |
| 23 | |
| 24 | func opDrop(vm *VM) { |
| 25 | item := vm.pop() |
| 26 | if !item.isDroppable() { |
| 27 | panic(errors.WithData(ErrType, "want", "Data, zero Value", "got", fmt.Sprintf("%T", item))) |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | func opEq(vm *VM) { |
| 32 | v1 := vm.popData() |
nothing calls this directly
no test coverage detected