[Nice-commit] Nice/src/bossa/parser Parser.jj,1.319,1.320
Brought to you by:
bonniot
From: Arjan B. <ar...@us...> - 2005-03-12 17:04:07
|
Update of /cvsroot/nice/Nice/src/bossa/parser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9955/F:/nice/src/bossa/parser Modified Files: Parser.jj Log Message: No leading zeros allowed on integer literals. Index: Parser.jj =================================================================== RCS file: /cvsroot/nice/Nice/src/bossa/parser/Parser.jj,v retrieving revision 1.319 retrieving revision 1.320 diff -C2 -d -r1.319 -r1.320 *** Parser.jj 12 Mar 2005 16:26:14 -0000 1.319 --- Parser.jj 12 Mar 2005 17:03:53 -0000 1.320 *************** *** 271,275 **** > | ! < #DECIMAL_LITERAL: ["0"-"9"] (["0"-"9", "_"])* > | < #HEX_LITERAL: "0" ["x","X"] (["0"-"9","a"-"f","A"-"F","_"])+ > --- 271,275 ---- > | ! < #DECIMAL_LITERAL: ( "0" | ["1"-"9"] (["0"-"9", "_"])* ) > | < #HEX_LITERAL: "0" ["x","X"] (["0"-"9","a"-"f","A"-"F","_"])+ > |