diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/core/macros.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/core/macros.nim b/lib/core/macros.nim index d09ea2fe2..b26264405 100644 --- a/lib/core/macros.nim +++ b/lib/core/macros.nim @@ -79,7 +79,7 @@ type nnkDistinctTy, nnkProcTy, nnkIteratorTy, # iterator type - nnkSharedTy, # 'shared T' + nnkSinkAsgn, nnkEnumTy, nnkEnumFieldDef, nnkArgList, nnkPattern @@ -127,6 +127,7 @@ type const nnkMutableTy* {.deprecated.} = nnkOutTy + nnkSharedTy* {.deprecated.} = nnkSinkAsgn type NimIdent* {.deprecated.} = object of RootObj |