aboutsummaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorantirez <antirez>2005-02-26 20:14:12 +0000
committerantirez <antirez>2005-02-26 20:14:12 +0000
commit401d9ed4ec74ed5729cfa3ae8bc022bb58150539 (patch)
tree298ec2de7cb97716b6fb2689b5c476b409a4e00c /TODO
downloadjimtcl-401d9ed4ec74ed5729cfa3ae8bc022bb58150539.zip
jimtcl-401d9ed4ec74ed5729cfa3ae8bc022bb58150539.tar.gz
jimtcl-401d9ed4ec74ed5729cfa3ae8bc022bb58150539.tar.bz2
Initial revision
Diffstat (limited to 'TODO')
-rw-r--r--TODO39
1 files changed, 39 insertions, 0 deletions
diff --git a/TODO b/TODO
new file mode 100644
index 0000000..9c65ff5
--- /dev/null
+++ b/TODO
@@ -0,0 +1,39 @@
+CORE LANGUAGE FEATURES
+
+- Traces
+- Closures, exported as a command that can set/get/unset elements
+ from a dictionary associated with the current procedure.
+ The [closure] command should allow to perform this operations,
+ and to access the closure of a procedure from another one.
+
+CORE COMMANDS
+
+- All the missing standard core commands not related to I/O, namespaces, ...
+- [tail] command for programmer-driven tail recursion optimization
+- The current [expr] needs a lot of work, expecially operators && and ||
+ are not lazy. Math functions are not present but probably will never
+ be added as expr functions, but as Tcl commands, like [sin], [cos] and
+ so on.
+
+COMMANDS NOT IN TCL BUT THAT SHOULD BE IN JIM
+
+- commands to operate on sets (that are lists semantically).
+
+EXTENSIONS
+
+- Regexp extension
+- OOP system (this will possibly part of the core)
+
+SPEED OPTIMIZATIONS
+
+- Cache call frames instead to free/realloc they at every proc call.
+
+IMPLEMENTATION ISSUES
+
+- Objects lazy free.
+- [split $string {}] should generate a list with Jim_Obj of chars shared.
+- [closure] command to set/get procedures-specific closure variables.
+ For example:
+- Remove SetTypeFromAny() method from the Jim_ObjType structure.
+ It's not useful, and it may be useful to have different prototypes
+ for the Set*FromAny() procedures of different types.