Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@rue
Created September 3, 2008 11:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rue/8567 to your computer and use it in GitHub Desktop.
Save rue/8567 to your computer and use it in GitHub Desktop.
STATE /* state */; /**< Access to the VM state. */
Array* arguments; /**< Arguments from the call. */
Task* task; /**< Access to the Task the method call runs in. */
size_t argument_start; /**< NOT USED. Index where arguments would start. */
/** SendSite in which this call originates. */
SendSite* send_site;
/** Name of the method being called (comes from SendSite) */
SYMBOL name;
/** Receiver in the call, i.e. obj in `obj.foo()` */
OBJECT recv;
/** Block object or nil if no block. */
OBJECT block;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment