Pop represents the POP virtual machine opcode.
| 172 | |
| 173 | // Pop represents the POP virtual machine opcode. |
| 174 | type Pop struct { |
| 175 | Count uint32 // Number of elements to pop from the top of the stack. |
| 176 | } |
| 177 | |
| 178 | func (c Pop) String() string { return fmt.Sprintf("Pop(Count: %d)", c.Count) } |
| 179 |
nothing calls this directly
no outgoing calls
no test coverage detected