Files
tinygo/compiler
Ayke van Laethem 46d5ea8cf6 compiler: support returning values from async functions
This is implemented as follows:

  * The parent coroutine allocates space for the return value in its
    frame and stores a pointer to this frame in the parent coroutine
    handle.
  * The child coroutine obtains the alloca from its parent using the
    parent coroutine handle. It then stores the result value there.
  * The parent value reads the data from the alloca on resumption.
2019-05-05 16:46:50 +02:00
..
2019-04-26 08:52:10 +02:00
2019-04-26 09:17:52 +02:00
2019-04-26 08:52:10 +02:00
2019-04-26 08:52:10 +02:00
2019-01-27 19:26:16 +01:00
2019-04-26 08:52:10 +02:00
2019-04-17 11:56:40 +02:00
2019-04-26 08:52:10 +02:00