summary refs log tree commit diff stats
path: root/lib/core/macros.nim
diff options
context:
space:
mode:
authortransfuturist <timothy.schmid@gmail.com>2015-06-20 12:21:16 -0700
committertransfuturist <timothy.schmid@gmail.com>2015-06-20 12:21:16 -0700
commita31c36e98f7caa330160b55c21d48c06cce03a62 (patch)
treeb4dfe1361a5e14baff0664b61fbad972ab100fa7 /lib/core/macros.nim
parentbc2aaea853d3bd1ad7641bf32335e3725f03afed (diff)
downloadNim-a31c36e98f7caa330160b55c21d48c06cce03a62.tar.gz
Undeprecate children
Diffstat (limited to 'lib/core/macros.nim')
-rw-r--r--lib/core/macros.nim2
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.} =