summary refs log tree commit diff stats
path: root/lib/core
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2016-12-29 10:54:46 +0100
committerGitHub <noreply@github.com>2016-12-29 10:54:46 +0100
commit49f2341cd73eb2ab067629e39049382da98e5d48 (patch)
tree7822f7341f4eeb1db7ee755609c6a6f2ef033d65 /lib/core
parent46e4b4854e9cb564950e7802aaaaf1a2c8c8cab9 (diff)
parent7372ad2bed41d01ad109c95bca3e6b65f2f91a8d (diff)
downloadNim-49f2341cd73eb2ab067629e39049382da98e5d48.tar.gz
Merge pull request #5156 from nigredo-tori/patch-1
NimTypeKind - replace ntyArrayConstr with ntyAlias
Diffstat (limited to 'lib/core')
-rw-r--r--lib/core/macros.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/core/macros.nim b/lib/core/macros.nim
index b0ef54397..3adf4670d 100644
--- a/lib/core/macros.nim
+++ b/lib/core/macros.nim
@@ -80,7 +80,7 @@ type
   NimNodeKinds* = set[NimNodeKind]
   NimTypeKind* = enum  # some types are no longer used, see ast.nim
     ntyNone, ntyBool, ntyChar, ntyEmpty,
-    ntyArrayConstr, ntyNil, ntyExpr, ntyStmt,
+    ntyAlias, ntyNil, ntyExpr, ntyStmt,
     ntyTypeDesc, ntyGenericInvocation, ntyGenericBody, ntyGenericInst,
     ntyGenericParam, ntyDistinct, ntyEnum, ntyOrdinal,
     ntyArray, ntyObject, ntyTuple, ntySet,