summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2012-03-17 17:31:33 +0100
committerAraq <rumpf_a@web.de>2012-03-17 17:31:33 +0100
commit7fd8f285d0c466940d44ea98b94d7820775bb93e (patch)
tree736c0181636ed4c61653080f4731f0e6953138a7
parenta1bde20c7097e0c272dc32d6093f0343c8a76226 (diff)
downloadNim-7fd8f285d0c466940d44ea98b94d7820775bb93e.tar.gz
rebuilt C sources
-rwxr-xr-xlib/system.nim7
-rwxr-xr-xtodo.txt2
2 files changed, 1 insertions, 8 deletions
diff --git a/lib/system.nim b/lib/system.nim
index 2644d6fbb..323cfc1bb 100755
--- a/lib/system.nim
+++ b/lib/system.nim
@@ -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
diff --git a/todo.txt b/todo.txt
index a8012350e..734216131 100755
--- a/todo.txt
+++ b/todo.txt
@@ -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.