diff options
Diffstat (limited to 'compiler')
-rwxr-xr-x | compiler/ast.nim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/ast.nim b/compiler/ast.nim index f4b0d00a0..39228da40 100755 --- a/compiler/ast.nim +++ b/compiler/ast.nim @@ -198,6 +198,9 @@ type nkMutableTy, # ``mutable T`` nkDistinctTy, # distinct type nkProcTy, # proc type + nkIteratorTy, # iterator type + nkSharedTy, # 'shared T' + # we use 'nkPostFix' for the 'not nil' addition nkEnumTy, # enum body nkEnumFieldDef, # `ident = expr` in an enumeration nkArgList, # argument list |