From 7372ad2bed41d01ad109c95bca3e6b65f2f91a8d Mon Sep 17 00:00:00 2001 From: nigredo-tori Date: Wed, 28 Dec 2016 22:37:54 +0700 Subject: [PATCH] NimTypeKind - replace ntyArrayConstr with ntyAlias Cleanup following the change in `TTypeKind` --- lib/core/macros.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/macros.nim b/lib/core/macros.nim index b0ef543976..3adf4670dd 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,