opcodeTuck inserts a duplicate of the top item of the data stack before the second-to-top item. Stack transformation: [... x1 x2] -> [... x2 x1 x2]
(op *opcode, data []byte, vm *Engine)
| 1373 | // |
| 1374 | // Stack transformation: [... x1 x2] -> [... x2 x1 x2] |
| 1375 | func opcodeTuck(op *opcode, data []byte, vm *Engine) error { |
| 1376 | return vm.dstack.Tuck() |
| 1377 | } |
| 1378 | |
| 1379 | // opcodeSize pushes the size of the top item of the data stack onto the data |
| 1380 | // stack. |
nothing calls this directly
no test coverage detected
searching dependent graphs…