Moved negative indexing operator here

Only used here (not in standard library)
This commit is contained in:
apense
2015-06-09 16:24:13 -04:00
parent 3142400351
commit 867b38496b

View File

@@ -948,6 +948,9 @@ proc add*(father, son: PNode) =
proc `[]`*(n: PNode, i: int): PNode {.inline.} =
result = n.sons[i]
template `-|`*(b, s: expr): expr =
(if b >= 0: b else: s.len + b)
# son access operators with support for negative indices
template `{}`*(n: PNode, i: int): expr = n[i -| n]
template `{}=`*(n: PNode, i: int, s: PNode): stmt =