mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-06 21:17:48 +00:00
c2nim knows about arrray[N, T]
This commit is contained in:
@@ -624,10 +624,11 @@ proc parseTypeSuffix(p: var TParser, typ: PNode): PNode =
|
||||
# array type:
|
||||
result = newNodeP(nkBracketExpr, p)
|
||||
addSon(result, newIdentNodeP("array", p))
|
||||
var r = newNodeP(nkRange, p)
|
||||
addSon(r, newIntNodeP(nkIntLit, 0, p))
|
||||
addSon(r, newBinary("-", index, newIntNodeP(nkIntLit, 1, p), p))
|
||||
addSon(result, r)
|
||||
#var r = newNodeP(nkRange, p)
|
||||
#addSon(r, newIntNodeP(nkIntLit, 0, p))
|
||||
#addSon(r, newBinary("-", index, newIntNodeP(nkIntLit, 1, p), p))
|
||||
#addSon(result, r)
|
||||
addSon(result, index)
|
||||
addSon(result, tmp)
|
||||
else:
|
||||
# pointer type:
|
||||
|
||||
Reference in New Issue
Block a user