From: <fwi...@us...> - 2008-10-31 16:26:49
|
Revision: 5536 http://jython.svn.sourceforge.net/jython/?rev=5536&view=rev Author: fwierzbicki Date: 2008-10-31 16:26:45 +0000 (Fri, 31 Oct 2008) Log Message: ----------- Offset fix. Modified Paths: -------------- trunk/jython/grammar/Python.g Modified: trunk/jython/grammar/Python.g =================================================================== --- trunk/jython/grammar/Python.g 2008-10-31 15:59:39 UTC (rev 5535) +++ trunk/jython/grammar/Python.g 2008-10-31 16:26:45 UTC (rev 5536) @@ -1178,6 +1178,7 @@ $etype = c; } else if (o instanceof Attribute) { Attribute c = (Attribute)o; + c.setCharStartIndex($etype.getCharStartIndex()); c.value = $etype; $etype = c; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |