summary refs log tree commit diff stats
path: root/todo.txt
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2011-06-21 00:47:58 +0200
committerAraq <rumpf_a@web.de>2011-06-21 00:47:58 +0200
commitcfb107f3466b185f97c2d33d09a9e6dfa0b6e6b6 (patch)
tree514423de2be57d74dbccb6a674761b1d77a19f54 /todo.txt
parentf1100356b1dc08558f51a6d360d272c000e1c4bd (diff)
downloadNim-cfb107f3466b185f97c2d33d09a9e6dfa0b6e6b6.tar.gz
implemented write access to s[i] for macros
Diffstat (limited to 'todo.txt')
-rwxr-xr-xtodo.txt13
1 files changed, 12 insertions, 1 deletions
diff --git a/todo.txt b/todo.txt
index 5a5e77ad2..5022f869e 100755
--- a/todo.txt
+++ b/todo.txt
@@ -1,6 +1,5 @@
 High priority (version 0.8.12)
 ==============================
-* implement write access to ``s[i]`` for macros
 * implement message passing built-ins
 * add --deadlock_prevention:on|off switch? timeout for locks?
 * built-in serialization
@@ -20,6 +19,18 @@ version 0.9.0
 - fix overloading resolution
 - make ^ available as operator
 - implement closures; implement proper coroutines
+- rethink comment syntax; people want::
+
+  type
+    TConfig* = object
+      limit*: int
+      outFile*: string
+      # Regex patterns to ignore. TLogEntry field -> regex pattern
+      # If this matches, the request will NOT be shown.
+      ignoreRe*: TTable[string, string] 
+
+  I think a good compromise is to define positions for the docgen in the
+  grammar and ignore other comments everywhere.
 
 Bugs
 ----