[Nice-commit] Nice/src/bossa/parser Parser.jj,1.251,1.252
Brought to you by:
bonniot
From: Arjan B. <ar...@us...> - 2004-08-04 18:36:18
|
Update of /cvsroot/nice/Nice/src/bossa/parser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14627/F:/nice/src/bossa/parser Modified Files: Parser.jj Log Message: Converted NewExp to nice code. Index: Parser.jj =================================================================== RCS file: /cvsroot/nice/Nice/src/bossa/parser/Parser.jj,v retrieving revision 1.251 retrieving revision 1.252 diff -C2 -d -r1.251 -r1.252 *** Parser.jj 30 Jul 2004 19:08:45 -0000 1.251 --- Parser.jj 4 Aug 2004 18:36:06 -0000 1.252 *************** *** 1709,1713 **** { Arguments arguments; } arguments = arguments(false) ! { e = new NewExp(classe, arguments); e.setLocation(makeLocation(t)); return e; --- 1709,1713 ---- { Arguments arguments; } arguments = arguments(false) ! { e = bossa.syntax.dispatch.createNewExp(classe, arguments); e.setLocation(makeLocation(t)); return e; |