From: Finn B. <bc...@us...> - 2001-02-23 20:26:34
|
Update of /cvsroot/jython/jython/org/python/parser In directory usw-pr-cvs1:/tmp/cvs-serv20118 Modified Files: TokenMgrError.java Log Message: Consistent formatting. Removed tab chars. Index: TokenMgrError.java =================================================================== RCS file: /cvsroot/jython/jython/org/python/parser/TokenMgrError.java,v retrieving revision 2.2 retrieving revision 2.3 diff -C2 -r2.2 -r2.3 *** TokenMgrError.java 1999/03/12 17:07:34 2.2 --- TokenMgrError.java 2001/02/23 20:27:40 2.3 *************** *** 141,152 **** public TokenMgrError(String message, int errorLine, int errorColumn) { this(message, LEXICAL_ERROR); ! this.EOFSeen = false; ! this.errorLine = errorLine; ! this.errorColumn = errorColumn; } public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) { this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, ! errorAfter, curChar), reason); // modified: 12-Mar-1999 baw this.EOFSeen = EOFSeen; --- 141,152 ---- public TokenMgrError(String message, int errorLine, int errorColumn) { this(message, LEXICAL_ERROR); ! this.EOFSeen = false; ! this.errorLine = errorLine; ! this.errorColumn = errorColumn; } public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) { this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, ! errorAfter, curChar), reason); // modified: 12-Mar-1999 baw this.EOFSeen = EOFSeen; |