summary refs log tree commit diff stats
path: root/lib/core/macros.nim
diff options
context:
space:
mode:
Diffstat (limited to 'lib/core/macros.nim')
-rwxr-xr-xlib/core/macros.nim7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/core/macros.nim b/lib/core/macros.nim
index 272b9a45e..2eab1750c 100755
--- a/lib/core/macros.nim
+++ b/lib/core/macros.nim
@@ -46,14 +46,17 @@ type
     nnkYieldStmt, nnkTryStmt, nnkFinally, nnkRaiseStmt, 

     nnkReturnStmt, nnkBreakStmt, nnkContinueStmt, nnkBlockStmt, nnkStaticStmt,

     nnkDiscardStmt, nnkStmtList, nnkImportStmt, nnkFromStmt, 

-    nnkIncludeStmt, nnkBindStmt, nnkPattern,

+    nnkIncludeStmt, nnkBindStmt, 

     nnkCommentStmt, nnkStmtListExpr, nnkBlockExpr, 

     nnkStmtListType, nnkBlockType, nnkTypeOfExpr, nnkObjectTy, 

     nnkTupleTy, nnkRecList, nnkRecCase, nnkRecWhen, 

     nnkRefTy, nnkPtrTy, nnkVarTy, 

     nnkConstTy, nnkMutableTy,

     nnkDistinctTy, 

-    nnkProcTy, nnkEnumTy, nnkEnumFieldDef, nnkReturnToken

+    nnkProcTy, nnkEnumTy, 
+    nnkEnumFieldDef, 
+    nnkArglist, nnkPattern
+    nnkReturnToken

   TNimNodeKinds* = set[TNimrodNodeKind]

   TNimrodTypeKind* = enum

     ntyNone, ntyBool, ntyChar, ntyEmpty,