diff options
author | transfuturist <timothy.schmid@gmail.com> | 2015-06-20 12:21:16 -0700 |
---|---|---|
committer | transfuturist <timothy.schmid@gmail.com> | 2015-06-20 12:21:16 -0700 |
commit | a31c36e98f7caa330160b55c21d48c06cce03a62 (patch) | |
tree | b4dfe1361a5e14baff0664b61fbad972ab100fa7 /lib/core/macros.nim | |
parent | bc2aaea853d3bd1ad7641bf32335e3725f03afed (diff) | |
download | Nim-a31c36e98f7caa330160b55c21d48c06cce03a62.tar.gz |
Undeprecate children
Diffstat (limited to 'lib/core/macros.nim')
-rw-r--r-- | lib/core/macros.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/core/macros.nim b/lib/core/macros.nim index 0bfdffc5d..3fd2c8502 100644 --- a/lib/core/macros.nim +++ b/lib/core/macros.nim @@ -713,7 +713,7 @@ iterator items*(n: NimNode): NimNode {.inline.} = for i in 0 .. high(n): yield n[i] -{.deprecated: [children: items].} +iterator children*(n: NimNode): NimNode {.inline.} = items template findChild*(n: NimNode; cond: expr): NimNode {. immediate, dirty.} = |