diff options
author | Araq <rumpf_a@web.de> | 2012-08-30 10:55:40 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-08-30 10:55:40 +0200 |
commit | 1786e3099141f6548e9f6cd4f4998d32f602b71d (patch) | |
tree | 13291cf1c2a7bfc4da2e53f4acf4959443d3379a /lib/core | |
parent | b4844a189d88655394080f765076a7d85fe6185d (diff) | |
download | Nim-1786e3099141f6548e9f6cd4f4998d32f602b71d.tar.gz |
first steps towards term rewriting macros
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 610360fb2..54d242238 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, + nnkIncludeStmt, nnkBindStmt, nnkPatternStmt, nnkCommentStmt, nnkStmtListExpr, nnkBlockExpr, nnkStmtListType, nnkBlockType, nnkTypeOfExpr, nnkObjectTy, nnkTupleTy, nnkRecList, nnkRecCase, nnkRecWhen, |