Is there a possibility to get string representation of an expression (or an identifier) inside a template
? For example, having the next code:
template `*`*(name: expr) {.immediate.} =
var `name`* {.inject.}: string = ""
# Want to print 'name' here, not its value like with backticks
Is it possible to get the string representation of the name
expression inside a template?