Merge pull request #5156 from nigredo-tori/patch-1

NimTypeKind - replace ntyArrayConstr with ntyAlias
This commit is contained in:
Andreas Rumpf
2016-12-29 10:54:46 +01:00
committed by GitHub

View File

@@ -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,