diff options
author | Araq <rumpf_a@web.de> | 2012-07-08 21:03:47 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-07-08 21:03:47 +0200 |
commit | 4fbba0a65ad310ba9498f1cf9f79eb0826b19f81 (patch) | |
tree | dece3596fbdf153263f5672b4011139f70a4df6a /todo.txt | |
parent | 36247e0947699a56d5bc51d48188b6dda1815587 (diff) | |
download | Nim-4fbba0a65ad310ba9498f1cf9f79eb0826b19f81.tar.gz |
changed integer promotion rules; breaks bootstrapping and lots of code
Diffstat (limited to 'todo.txt')
-rwxr-xr-x | todo.txt | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/todo.txt b/todo.txt index e32c03ee6..603c2d1ad 100755 --- a/todo.txt +++ b/todo.txt @@ -1,12 +1,11 @@ version 0.9.0 ============= +- deprecate ``var x, y = 0`` as it's confusing for tuple consistency - finish support for unsigned ints: - - document new type conversion rules + - support more unsigned operations - test codegen - - provide ``$`` for unsigned ints -Debug GC session: - test sequence of closures; especially that the GC does not leak for those! New pragmas: @@ -15,8 +14,6 @@ New pragmas: - document destructors - ``borrow`` needs to take type classes into account -- make templates hygienic by default: try to gensym() everything in the 'block' - of a template; find a better solution for gensym instead of `*ident` - introduce ``;`` to the parser - make use of ``tyIter`` to fix the implicit items/pairs issue - ``=`` should be overloadable; requires specialization for ``=`` @@ -50,7 +47,10 @@ version 0.9.XX - document it - fix exception handling +- make templates hygienic by default: try to gensym() everything in the 'block' + of a template; find a better solution for gensym instead of `*ident` - document nimdoc properly finally +- make 'clamp' a magic for the range stuff - implement a warning message for shadowed 'result' variable - implement the high level optimizer - change overloading resolution @@ -101,7 +101,7 @@ Library newSeq(result, a.len) for i in 0..a.len-1: result[i] = a[i] - --> ensure @[] calls the array version! + --> ensure @[] still calls the array version! Low priority @@ -147,7 +147,6 @@ Further optimization ideas Version 2 and beyond ==================== - - shared memory heap: ``shared ref`` etc. The only hard part in the GC is to "stop the world". However, it may be worthwhile to generate explicit (or implicit) syncGC() calls in loops. Automatic loop injection seems |