[Mumps2Py:] [135] treat TEXTVALs like the comments they are, for now. |
[ Thread Index |
Date Index
| More lists.mumps2py.org/discuss Archives
]
Revision: 135
Author: pgallot
Date: 2008-02-27 17:22:59 +0000 (Wed, 27 Feb 2008)
Log Message:
-----------
treat TEXTVALs like the comments they are, for now.
They are also an implicit form of indirection, so I will have to eventually store them in the translated code in an accessible way.
Modified Paths:
--------------
trunk/mumps2py/tok2python.py
Modified: trunk/mumps2py/tok2python.py
===================================================================
--- trunk/mumps2py/tok2python.py 2008-02-26 22:56:59 UTC (rev 134)
+++ trunk/mumps2py/tok2python.py 2008-02-27 17:22:59 UTC (rev 135)
@@ -853,6 +853,7 @@
TRANS_FUNC_DICT = {
EMPTYLINE: translate_emptyline,
COMMENT: translate_comment,
+ TEXTVAL: translate_comment, #temporary.
LABEL: translate_label,
BREAKCMD: translate_break,
CLOSECMD: translate_close,