Merge branch 'master' of github.com:status-im/nim-asyncdispatch2

This commit is contained in:
cheatfate 2018-07-13 11:25:21 +03:00
commit c9ab35dabc

View File

@ -185,6 +185,8 @@ proc processBody(node, retFutureSym: NimNode,
proc getName(node: NimNode): string {.compileTime.} =
case node.kind
of nnkSym:
return $node
of nnkPostfix:
return node[1].strVal
of nnkIdent: