NimTypeKind - replace ntyArrayConstr with ntyAlias

Cleanup following the change in `TTypeKind`
This commit is contained in:
nigredo-tori
2016-12-28 22:37:54 +07:00
committed by GitHub
parent b42b467b77
commit 7372ad2bed

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,