Update macros.nim (#14697)

This commit is contained in:
solo989
2020-06-16 22:57:04 -07:00
committed by GitHub
parent ff93302f69
commit bdd2c25e9f

View File

@@ -466,6 +466,8 @@ proc newIdentNode*(i: string): NimNode {.magic: "StrToIdent", noSideEffect, comp
## Creates an identifier node from `i`. It is simply an alias for
## ``ident(string)``. Use that, it's shorter.
proc ident*(name: string): NimNode {.magic: "StrToIdent", noSideEffect.}
## Create a new ident node from a string.
type
BindSymRule* = enum ## specifies how ``bindSym`` behaves
@@ -1283,9 +1285,6 @@ proc `$`*(node: NimNode): string {.compileTime.} =
else:
badNodeKind node, "$"
proc ident*(name: string): NimNode {.magic: "StrToIdent", noSideEffect.}
## Create a new ident node from a string.
iterator items*(n: NimNode): NimNode {.inline.} =
## Iterates over the children of the NimNode ``n``.
for i in 0 ..< n.len: