| CODENOTIFIER | HelpYou are not signed inSign in |
Project: Jython
Revision: 5249
Author: fwierzbicki
Date: 26 Aug 2008 08:21:42
Changes:Remove unnecessary constructor on BinOp (now it is just the generated version again)
Remove some whitespace in Python.g
| ... | ...@@ -1261,7 +1261,7 @@ | |
| 1261 | 1261 | trailer [Token begin] |
| 1262 | 1262 | : LPAREN |
| 1263 | 1263 | (arglist |
| 1264 | -> ^(LPAREN<Call>[$begin, null, actions.makeExprs($arglist.args), | |
| 1264 | -> ^(LPAREN<Call>[$begin, null, actions.makeExprs($arglist.args), | |
| 1265 | 1265 | actions.makeKeywords($arglist.keywords), $arglist.starargs, $arglist.kwargs]) |
| 1266 | 1266 | | |
| 1267 | 1267 | -> ^(LPAREN<Call>[$LPAREN, null, new exprType[0\], new keywordType[0\], null, null]) |
| ... | ...@@ -13,10 +13,6 @@ | |
| 13 | 13 | |
| 14 | 14 | public static final String[] _fields = new String[] {"left","op","right"}; |
| 15 | 15 | |
| 16 | public BinOp(Token token) { | |
| 17 | super(token); | |
| 18 | } | |
| 19 | ||
| 20 | 16 | public BinOp(Token token, exprType left, operatorType op, exprType right) { |
| 21 | 17 | super(token); |
| 22 | 18 | this.left = left; |