Guest User

Untitled

a guest
Feb 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. STATE /* state */; /**< Access to the VM state. */
  2. Array* arguments; /**< Arguments from the call. */
  3. Task* task; /**< Access to the Task the method call runs in. */
  4. size_t argument_start; /**< NOT USED. Index where arguments would start. */
  5.  
  6. /** SendSite in which this call originates. */
  7. SendSite* send_site;
  8. /** Name of the method being called (comes from SendSite) */
  9. SYMBOL name;
  10. /** Receiver in the call, i.e. obj in `obj.foo()` */
  11. OBJECT recv;
  12. /** Block object or nil if no block. */
  13. OBJECT block;
Add Comment
Please, Sign In to add comment