diff options
author | Alexander Ivanov <alehander42@gmail.com> | 2018-03-05 10:28:17 +0200 |
---|---|---|
committer | Alexander Ivanov <alehander42@gmail.com> | 2018-03-05 10:28:17 +0200 |
commit | b6c69dd45e9d06179de64bf47a6aea04521c500b (patch) | |
tree | d7385231867cf6e442a293b7fcad397ef58f5cd3 /tests/js | |
parent | 3bffbf5a4d499ed4c3dce9f70d1188b2fa838ed1 (diff) | |
download | Nim-b6c69dd45e9d06179de64bf47a6aea04521c500b.tar.gz |
Use addPragma
Diffstat (limited to 'tests/js')
-rw-r--r-- | tests/js/tasync_pragma.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/js/tasync_pragma.nim b/tests/js/tasync_pragma.nim index a16e94657..916769fad 100644 --- a/tests/js/tasync_pragma.nim +++ b/tests/js/tasync_pragma.nim @@ -15,7 +15,7 @@ macro f*(a: untyped): untyped = result.body.add(call) for child in a.body: result.body.add(child) - echo result.body.repr + #echo result.body.repr proc t* {.async, f.} = echo "t" |