Files
Nim/lib
Dominik Picheta 202cc48903 The async macro now supports transforming multiple async procs.
This is a workaround for #3182, no forward declarations. You can now do
this:

```nim
async:
  proc bar(): Future[T]
  proc foo() = await bar()
  proc bar() {.async.} = echo(123); await foo()
```
2015-08-03 21:28:33 +01:00
..
2015-08-03 18:42:02 +01:00
2015-06-04 13:18:42 +02:00
2015-08-02 02:56:02 +02:00
2013-03-16 23:53:07 +01:00
2015-07-22 17:08:21 +02:00
2014-08-28 09:50:51 +02:00
2014-08-28 09:59:26 +02:00