On Mon, Mar 22, 2010 at 4:38 PM, Mario Domenech Goulart
<mario.goulart@gmail.com> wrote:
Not directly related, but an alternative approach would be something
like http://chicken.wiki.br/eggref/3/lua (i.e., embedding an
implementation of a non-parenthesis-oriented-syntax language into your
application and binding it to Gambit).
That would work, but it would really be nice to avoid having two of everything (garbage collectors, VMs, etc.) and embedding another interpreter into an already dynamic language. I just want to compile a basic syntax into sexprs, and not even implement a lot of the Javascript runtime (like prototypes) and just rely on Scheme.
On Mon, Mar 22, 2010 at 4:41 PM, Marc Feeley
<feeley@iro.umontreal.ca> wrote:
I looked around and apparently there is a PLT package which implements a JavaScript parser and evaluator. Maybe that would be a good starting point.
I saw the PLT package too. That might be a good package to start with. Are you interested in working on this soon?