[Nice-commit] Nice/src/bossa/parser Parser.jj,1.308,1.309
Brought to you by:
bonniot
|
From: Daniel B. <bo...@us...> - 2005-02-21 12:45:13
|
Update of /cvsroot/nice/Nice/src/bossa/parser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28234/src/bossa/parser Modified Files: Parser.jj Log Message: Whitespace cleanup. Index: Parser.jj =================================================================== RCS file: /cvsroot/nice/Nice/src/bossa/parser/Parser.jj,v retrieving revision 1.308 retrieving revision 1.309 diff -C2 -d -r1.308 -r1.309 *** Parser.jj 17 Jan 2005 13:16:56 -0000 1.308 --- Parser.jj 21 Feb 2005 12:44:54 -0000 1.309 *************** *** 101,105 **** } ! SPECIAL_TOKEN : { <SINGLE_LINE_COMMENT: "//" (~["\n", "\r"])* ("\n" | "\r" | "\r\n" )? > } --- 101,105 ---- } ! SPECIAL_TOKEN : { <SINGLE_LINE_COMMENT: "//" (~["\n", "\r"])* ("\n" | "\r" | "\r\n" )? > } [...2239 lines suppressed...] )* --- 2827,2831 ---- "try" body=Block() { res = new TryStmt(body); } ! ( "catch" "(" tc=typeConstructorIdent() i=ident() ")" b=Block() { res.addCatch(tc, i, b); } )* *************** *** 2843,2847 **** t = "assert" condition = SideEffectFreeExpression() ! ( ":" message = SideEffectFreeExpression() { call = bossa.syntax.dispatch.createCallExp(symb(t), condition, message); } | --- 2843,2847 ---- t = "assert" condition = SideEffectFreeExpression() ! ( ":" message = SideEffectFreeExpression() { call = bossa.syntax.dispatch.createCallExp(symb(t), condition, message); } | |