-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Open
Labels
AST RendererIssues related to the compiler turning AST back into Nim code as a string.Issues related to the compiler turning AST back into Nim code as a string.
Description
Example
macro deb1(a) =
echo a.repr
macro deb2(a: typed) =
echo a.repr
deb1:
(proc (): auto = 12)()
deb2:
(proc (): auto = 12)()
Current Output
(proc (): auto =
12)()
proc (): auto = result = 12()
Expected Output
(proc (): auto =
12)()
(proc (): auto = result = 12)()
Additional Information
1.5.1 6b3c77e
juancarlospaco
Metadata
Metadata
Assignees
Labels
AST RendererIssues related to the compiler turning AST back into Nim code as a string.Issues related to the compiler turning AST back into Nim code as a string.