js.lisp breakup
authorRed Daly <reddaly@gmail.com>
Tue, 26 Jun 2007 21:30:27 +0000 (21:30 +0000)
committerRed Daly <reddaly@gmail.com>
Tue, 26 Jun 2007 21:30:27 +0000 (21:30 +0000)
commitcc4f15510a65fb5cf27c7f210b833cd8f278e83c
treeabde36480d5feb79b118f76b3011afce807dbf55
parent97eb9b754ae4cb7cae36937de3ddbc363ddd37c0
js.lisp breakup

Broke the js.lisp file up into several three files: source-model.lisp,
js-translation.lisp, and parser.lisp.

source-model.lisp: class definitions that correspond to the Javascript
AST.  (defjsclass forms for the most part)

js-translation.lisp: functions for converting AST objects to
Javascript source code

parser.lisp: macro definitions and the mechanisms for processing
Parenscript forms into AST objects.

See also: http://common-lisp.net/pipermail/parenscript-devel/2007-June/000035.html
parenscript.asd
src/js-translation.lisp [new file with mode: 0644]
src/js.lisp [deleted file]
src/parser.lisp [new file with mode: 0644]
src/source-model.lisp [new file with mode: 0644]
src/utils.lisp