File: TODO

package info (click to toggle)
elk 3.0-6
  • links: PTS
  • area: main
  • in suites: potato, slink
  • size: 4,068 kB
  • ctags: 3,123
  • sloc: ansic: 20,686; lisp: 5,232; makefile: 419; awk: 91; sh: 21
file content (58 lines) | stat: -rw-r--r-- 1,912 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
Interpreter kernel

  o  Documentation strings.  Put them into an extra field in S_Compound.
     New primitives:  procedure-documentation, macro-documentation.

  o  It should not matter to an extension writer whether a primitive is
     written in Scheme or in C -- primitives should not be invoked directly
     via the P_ functions.  Instead, a more general mechanism is needed.

  o  include/misc.h: Reader_Tweak_Stream() should call Primitive_Error()
     if ferror() is true.

  o  Implement a pure heap for constant objects (should be placed into
     read-only text segment by "dump").

  o  Generic print, equal, etc. functions should be provided for
     extensions.

  o  Treat # as comment character if file starts with #! (hard to
     implement, as this requires the reader to detect beginning of line).

  o  map and for-each should also work for other data structures
     (such as vectors).

  o  Dump for NEXT-OS/MACH.


Extensions

  o  Motif:  add support for new widgets and new functions.

  o  A socket/networking extension.

  o  A UNIX process interface, like that in GNU Emacs.

  o  A foreign function interface generator as described in the CFI's
     ``A Scheme-Based Extension Language Environment''.


Projects

  o  Symbol completion would be very useful (but hard to implement).

  o  A reasonable debugger and a better trace facility are needed.

  o  An interface to Tcl/Tk.

  o  The error-handler should be invoked with a symbol identifying the
     error as an argument.  The symbol has an error text property
     holding the full text.

  o  Ports: the accessor functions should be part of the port object.

  o  Hash tables.  Need to be rehashed on each GC.  Table object
     holds hash function, compare function, etc.

  o  It should be possible to define new types in Scheme (not only in
     extensions).  New primitive: define-type (similar to define-structure?).