Hello! I'm back to bother you again. I have a macro that goes over a type
section argument, generating code for type definitions annotated with custom
pragmas. One of my custom pragmas (called transform) is supposed to be used
with a proc argument, like this: transform: someProc. However, unlike
everything else in the type section, someProc doesn't get resolved. The macro
receives an nkIdent node, but I need a NimSym to inspect its type. I tried
bindSym, but it only seems to work at compile time of the macro itself, so it
works with a string literal, but not with a name that would've been extracted
from the nkIdent node. Is there anything else I can use?