rebuilt C sources

This commit is contained in:
Araq
2012-03-17 17:31:33 +01:00
parent a1bde20c70
commit 7fd8f285d0
2 changed files with 1 additions and 8 deletions

View File

@@ -2213,13 +2213,6 @@ proc shallow*(s: var string) {.noSideEffect, inline.} =
var s = cast[PGenericSeq](s)
s.reserved = s.reserved or seqShallowFlag
#template static*(e: expr): expr =
# ## evaluates a given expression `e` at compile-time
# ## even if it has side effects
# block:
# const res = e
# res
type
TNimrodNode {.final.} = object
PNimrodNode* {.magic: "PNimrodNode".} = ref TNimrodNode

View File

@@ -79,7 +79,7 @@ version 0.9.XX
- 'export' feature (requires improved docgen)
- think about ``{:}.toTable[int, string]()``
- mocking support with ``tyProxy`` that does:
o.p(x) --> p(o, x) --> myMacro(o, p, x)
o.p(x) --> p(o, x) --> myMacro(p, o, x)
This is really the opposite of ``tyExpr``:
* For parameter ``tyExpr`` any argument matches.