Call represents the CALL virtual machine opcode.
| 98 | |
| 99 | // Call represents the CALL virtual machine opcode. |
| 100 | type Call struct { |
| 101 | PushReturn bool // Should the return value be pushed onto the stack? |
| 102 | ApiIndex uint8 // The index of the API this call belongs to. |
| 103 | FunctionID uint16 // The function identifier to call. |
| 104 | } |
| 105 | |
| 106 | func (c Call) String() string { |
| 107 | return fmt.Sprintf("Call(PushReturn: %v, API: %v, Func: %v)", c.PushReturn, c.ApiIndex, c.FunctionID) |
nothing calls this directly
no outgoing calls
no test coverage detected