[Nice-commit] Nice/src/bossa/parser Parser.jj,1.296,1.297
Brought to you by:
bonniot
From: Arjan B. <ar...@us...> - 2005-01-04 21:21:18
|
Update of /cvsroot/nice/Nice/src/bossa/parser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20863/F:/nice/src/bossa/parser Modified Files: Parser.jj Log Message: Removed some superfluous conversion constructs. Index: Parser.jj =================================================================== RCS file: /cvsroot/nice/Nice/src/bossa/parser/Parser.jj,v retrieving revision 1.296 retrieving revision 1.297 diff -C2 -d -r1.296 -r1.297 *** Parser.jj 3 Jan 2005 01:24:11 -0000 1.296 --- Parser.jj 4 Jan 2005 21:20:00 -0000 1.297 *************** *** 1090,1094 **** javaName=doted_string() { res.setImplementation(new JavaClass(res, javaName)); } ! | { res.setImplementation(bossa.syntax.dispatch.createPrimitiveType(res)); } ) ";" ) --- 1090,1094 ---- javaName=doted_string() { res.setImplementation(new JavaClass(res, javaName)); } ! | { res.setImplementation(res.createPrimitiveType()); } ) ";" ) |