mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Added a note about CPS conversion and continuation arguments
This commit is contained in:
parent
f624e68a33
commit
12cda32850
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ Where:
|
|||
* `data` is state data for the current thread
|
||||
* `argc` indicates how many arguments were sent by the caller. Generally only applicable for variadic functions.
|
||||
* `closure` is the caller's closure. Note this is ignored for global functions as closures are never applicable to them.
|
||||
* `k` is the continuation to call into next.
|
||||
* `k` is the continuation to call into next. Note this is not necessarily present; it is often placed here as a result of the compiler's CPS conversion phase.
|
||||
|
||||
In addition zero or more objects may be listed after that as well as an ellipsis `...` for variadic functions. For example:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue