opcode3Dup duplicates the top 3 items on the data stack. Stack transformation: [... x1 x2 x3] -> [... x1 x2 x3 x1 x2 x3]
(op *opcode, data []byte, vm *Engine)
| 1242 | // |
| 1243 | // Stack transformation: [... x1 x2 x3] -> [... x1 x2 x3 x1 x2 x3] |
| 1244 | func opcode3Dup(op *opcode, data []byte, vm *Engine) error { |
| 1245 | return vm.dstack.DupN(3) |
| 1246 | } |
| 1247 | |
| 1248 | // opcode2Over duplicates the 2 items before the top 2 items on the data stack. |
| 1249 | // |
nothing calls this directly
no test coverage detected
searching dependent graphs…