diff options
author | Araq <rumpf_a@web.de> | 2012-08-30 22:55:32 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-08-30 22:55:32 +0200 |
commit | 1d14cb1ad8d4d98ea19daa2d5ab6ded59d58553a (patch) | |
tree | c32929ff723358f440415d7610fd283f58f17a91 /lib/core | |
parent | 1786e3099141f6548e9f6cd4f4998d32f602b71d (diff) | |
download | Nim-1d14cb1ad8d4d98ea19daa2d5ab6ded59d58553a.tar.gz |
next steps towards term rewriting macros; simple examples work
Diffstat (limited to 'lib/core')
-rwxr-xr-x | 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 54d242238..272b9a45e 100755 --- a/lib/core/macros.nim +++ b/lib/core/macros.nim @@ -46,7 +46,7 @@ type nnkYieldStmt, nnkTryStmt, nnkFinally, nnkRaiseStmt, nnkReturnStmt, nnkBreakStmt, nnkContinueStmt, nnkBlockStmt, nnkStaticStmt, nnkDiscardStmt, nnkStmtList, nnkImportStmt, nnkFromStmt, - nnkIncludeStmt, nnkBindStmt, nnkPatternStmt, + nnkIncludeStmt, nnkBindStmt, nnkPattern, nnkCommentStmt, nnkStmtListExpr, nnkBlockExpr, nnkStmtListType, nnkBlockType, nnkTypeOfExpr, nnkObjectTy, nnkTupleTy, nnkRecList, nnkRecCase, nnkRecWhen, |