aboutsummaryrefslogtreecommitdiff
path: root/ClojureCLR/todo.txt
diff options
context:
space:
mode:
Diffstat (limited to 'ClojureCLR/todo.txt')
-rw-r--r--ClojureCLR/todo.txt39
1 files changed, 7 insertions, 32 deletions
diff --git a/ClojureCLR/todo.txt b/ClojureCLR/todo.txt
index bf4aa392..e65b4599 100644
--- a/ClojureCLR/todo.txt
+++ b/ClojureCLR/todo.txt
@@ -3,52 +3,27 @@ This list is most definitely incomplete.
These are in no particular order.
-- Add other bootstrap *.clj files (beyond core.clj and core-print.clj).
+- Look closely at all code generation to find areas for speedup
+
+- Add other bootstrap *.clj files (remaining are: clojure.xml and inspector.xml)
- Add more unit tests for the basic data structures.
- Test against all the clojure/contrib/test_clojure/*.clj files.
-- Bring clojure-contrib into the load.
-
-- Bring the code up to rev with the lazy version of clojure.
+- Add gen-class.
-- Add file compilation (AOT compilation).
- -- The shortest path to this will be through ScripCode.SaveToAssembly
- and ScriptCode.LoadFromAssembly. While not full compilation to
- MSIL, it will be interesting to see (a) if we can get it to work,
- and (b) what degree of speedup we get over loading .clj files.
- -- The much longer path is to write compiled code to an assembly.
- This can be done in the same way Snippets work.
+- Add proxies.
--- Change IFn handling away from the current method:
- = each IFn is an instance of AFnImpl or RestFnImpl
- to
- = each IFn has its own class with fn methods as either field values or static methods
- (current limitation of DLR prevents compiling ExpressionTrees to instance methods)
-- Add gen-class.
-- Add proxies.
+- Add missing array support, including
+ -- figure out how to handle ragged n-dim arrays versus true multi-dim arrays.
-- Implement lib loading. As part of this,
- -- make sure all the namespace functionality really works.
- --
- Add callsites for host expression calls. See MethodBinder.
-- As part of this, look at the type handling in selecting a target method
based on argument types in host calls.
-- Finish basic REPL
- -- need *1, *2, *3, *e, better error handling, etc.
-
-- Add EvalReader to the LispReader.
-
-- Add primitive-type array support.
-
-- Add array support, including
- -- figure out how to handle ragged n-dim arrays versus true multi-dim arrays.
-
-
Far away in the distance:
- Really pay attention to doing all the proper DLR hosting work.