diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-12-29 10:54:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-29 10:54:46 +0100 |
commit | 49f2341cd73eb2ab067629e39049382da98e5d48 (patch) | |
tree | 7822f7341f4eeb1db7ee755609c6a6f2ef033d65 /lib/core | |
parent | 46e4b4854e9cb564950e7802aaaaf1a2c8c8cab9 (diff) | |
parent | 7372ad2bed41d01ad109c95bca3e6b65f2f91a8d (diff) | |
download | Nim-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.nim | 2 |
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, |