~oubiwann/pylisp-ng/ast-lisp

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
==========
Known Bugs
==========

* There is a problem with the id-generation in _processNodes right now for
  expressions that have a ListObject prior to non-List objects. The unit tests
  that this affects have been commented and named such that they don't run.

  One possible solution is to use the recently-created s-expression descender
  code, taking advantage of state-tracking inherent with objects and the
  handler methods.


====
TODO
====

* support testing .l files

* support lisp interpreter tests in doctests?

* add http://www.biostat.wisc.edu/~annis/creations/PyLisp/tests.txt to tests

* replace fragile interpreter that originally came with PyLisp with one based
  on the Python interpreter

  - graceful quit

  - command history

  - auto-completion

* add support for getting expressions by index (and thus slicing as well)

* add support for getting sub-expressions