[Adapdev-commits] Adapdev/src/Adapdev.NVelocity/Runtime/Parser Parser.cs,1.5,1.6 ParserTokenManager.
Status: Beta
Brought to you by:
intesar66
From: Sean M. <int...@us...> - 2005-11-26 08:09:35
|
Update of /cvsroot/adapdev/Adapdev/src/Adapdev.NVelocity/Runtime/Parser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18792/src/Adapdev.NVelocity/Runtime/Parser Modified Files: Parser.cs ParserTokenManager.cs Log Message: Cleaned up several warnings Restored some lingering files Index: ParserTokenManager.cs =================================================================== RCS file: /cvsroot/adapdev/Adapdev/src/Adapdev.NVelocity/Runtime/Parser/ParserTokenManager.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ParserTokenManager.cs 16 Nov 2005 07:01:50 -0000 1.5 --- ParserTokenManager.cs 26 Nov 2005 08:09:23 -0000 1.6 *************** *** 41,45 **** } // was EmptyStackException ! catch (InvalidOperationException e) { lparen = 0; --- 41,45 ---- } // was EmptyStackException ! catch (InvalidOperationException) { [...1126 lines suppressed...] } --- 3884,3888 ---- continue; } ! catch (IOException) { } *************** *** 3909,3913 **** input_stream.backup(1); } ! catch (IOException e1) { EOFSeen = true; --- 3897,3901 ---- input_stream.backup(1); } ! catch (IOException) { EOFSeen = true; Index: Parser.cs =================================================================== RCS file: /cvsroot/adapdev/Adapdev/src/Adapdev.NVelocity/Runtime/Parser/Parser.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Parser.cs 16 Nov 2005 07:01:50 -0000 1.5 --- Parser.cs 26 Nov 2005 08:09:23 -0000 1.6 *************** *** 305,309 **** } } - throw new ApplicationException("Missing return statement in function"); } --- 305,308 ---- *************** *** 943,947 **** } } - throw new ApplicationException("Missing return statement in function"); } --- 942,945 ---- *************** *** 4866,4870 **** private int jj_la; public bool lookingAhead = false; ! private bool jj_semLA; private int jj_gen; //UPGRADE_NOTE: Final was removed from the declaration of 'jj_la1 '. 'ms-help://MS.VSCC/commoner/redir/redirect.htm?keyword="jlca1003"' --- 4864,4868 ---- private int jj_la; public bool lookingAhead = false; ! private int jj_gen; //UPGRADE_NOTE: Final was removed from the declaration of 'jj_la1 '. 'ms-help://MS.VSCC/commoner/redir/redirect.htm?keyword="jlca1003"' |