From: <fwi...@us...> - 2008-08-14 17:51:37
|
Revision: 5176 http://jython.svn.sourceforge.net/jython/?rev=5176&view=rev Author: fwierzbicki Date: 2008-08-14 17:51:34 +0000 (Thu, 14 Aug 2008) Log Message: ----------- Updated comment. Modified Paths: -------------- branches/asm/grammar/Python.g Modified: branches/asm/grammar/Python.g =================================================================== --- branches/asm/grammar/Python.g 2008-08-14 02:00:01 UTC (rev 5175) +++ branches/asm/grammar/Python.g 2008-08-14 17:51:34 UTC (rev 5176) @@ -56,16 +56,13 @@ * REQUIRES ANTLR v3 * * - * Baby step towards an antlr based Jython parser. - * Terence's Lexer is intact pretty much unchanged, the parser has - * been altered to produce an AST - the AST work started from tne newcompiler - * grammar from Jim Baker minus post-2.3 features. The current parsing - * and compiling strategy looks like this: + * Updated the original parser for Python 2.5 features. The parser has been + * altered to produce an AST - the AST work started from tne newcompiler + * grammar from Jim Baker. The current parsing and compiling strategy looks + * like this: * * Python source->Python.g->simple antlr AST->PythonWalker.g-> * decorated AST (org/python/parser/ast/*)->CodeCompiler(ASM)->.class - * - * for a very limited set of functionality. */ grammar Python; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |