opcodeRot rotates the top 3 items on the data stack to the left. Stack transformation: [... x1 x2 x3] -> [... x2 x3 x1]
(op *opcode, data []byte, vm *Engine)
| 1358 | // |
| 1359 | // Stack transformation: [... x1 x2 x3] -> [... x2 x3 x1] |
| 1360 | func opcodeRot(op *opcode, data []byte, vm *Engine) error { |
| 1361 | return vm.dstack.RotN(1) |
| 1362 | } |
| 1363 | |
| 1364 | // opcodeSwap swaps the top two items on the stack. |
| 1365 | // |
nothing calls this directly
no test coverage detected
searching dependent graphs…