Load represents the LOAD virtual machine opcode.
| 160 | |
| 161 | // Load represents the LOAD virtual machine opcode. |
| 162 | type Load struct { |
| 163 | DataType protocol.Type // The value types to load. |
| 164 | } |
| 165 | |
| 166 | func (c Load) String() string { return fmt.Sprintf("Load(Type: %v)", c.DataType) } |
| 167 |
nothing calls this directly
no outgoing calls
no test coverage detected