summary refs log tree commit diff stats
path: root/lib/core
diff options
context:
space:
mode:
authorZahary Karadjov <zahary@gmail.com>2013-08-31 19:40:36 +0300
committerZahary Karadjov <zahary@gmail.com>2013-08-31 19:40:36 +0300
commitb5d833b329191cf99718e2ea6dc08895c47dd8f9 (patch)
tree488ce125246a461db19ef4f03ab91890393771cf /lib/core
parent01ccb52a00ec4b41b0be3ebb6bafb2a44eba8f26 (diff)
downloadNim-b5d833b329191cf99718e2ea6dc08895c47dd8f9.tar.gz
implemented the using statement
Diffstat (limited to 'lib/core')
-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 362e670e6..9ac6b0082 100644
--- a/lib/core/macros.nim
+++ b/lib/core/macros.nim
@@ -56,7 +56,7 @@ type
     nnkFromStmt,
     nnkIncludeStmt,
     
-    nnkBindStmt, nnkMixinStmt,
+    nnkBindStmt, nnkMixinStmt, nnkUsingStmt,
     nnkCommentStmt, nnkStmtListExpr, nnkBlockExpr,
     nnkStmtListType, nnkBlockType, nnkTypeOfExpr, nnkObjectTy,
     nnkTupleTy, nnkTypeClassTy, nnkRecList, nnkRecCase, nnkRecWhen,