Related articles |
---|
Zemscript grom@zeminvaders.net (Cameron Zemek) (2008-07-31) |
From: | Cameron Zemek <grom@zeminvaders.net> |
Newsgroups: | comp.compilers |
Date: | Thu, 31 Jul 2008 21:05:22 +1000 |
Organization: | Compilers Central |
Keywords: | interpreter, available |
Posted-Date: | 01 Aug 2008 06:49:01 EDT |
I've created a simple script interpreter in Java at
http://code.google.com/p/zemscript/ .
Its purpose is to provide a simple code base that is easy to understand
and be used in teaching basic techniques in writing an interpreter.
The project contains the following:
* Hand written Lexer
* Parser that process tokens from the Lexer to check the syntax and
generate an Abstract Syntax Tree
* An Interpreter that evaluates the abstract syntax tree by visiting
the nodes. It also performs some semantic checking.
Can you provide me with your feedback?
Thanks in advance!
Return to the
comp.compilers page.
Search the
comp.compilers archives again.