diff options
Diffstat (limited to 'compiler/ast.nim')
-rwxr-xr-x | compiler/ast.nim | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/compiler/ast.nim b/compiler/ast.nim index 77f8723e2..f4ba1ef70 100755 --- a/compiler/ast.nim +++ b/compiler/ast.nim @@ -172,10 +172,11 @@ type nkDiscardStmt, # a discard statement nkStmtList, # a list of statements nkImportStmt, # an import statement - nkFromStmt, # a from * import statement nkImportExceptStmt, # an import x except a statement - nkIncludeStmt, # an include statement nkExportStmt, # an export statement + nkExportExceptStmt, # an 'export except' statement + nkFromStmt, # a from * import statement + nkIncludeStmt, # an include statement nkBindStmt, # a bind statement nkMixinStmt, # a mixin statement nkCommentStmt, # a comment statement |