[Nice-commit] Nice/src/bossa/parser Parser.jj,1.276,1.277
Brought to you by:
bonniot
From: Arjan B. <ar...@us...> - 2004-11-28 02:44:02
|
Update of /cvsroot/nice/Nice/src/bossa/parser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14105/F:/nice/src/bossa/parser Modified Files: Parser.jj Log Message: Converted AbstractInterface. Index: Parser.jj =================================================================== RCS file: /cvsroot/nice/Nice/src/bossa/parser/Parser.jj,v retrieving revision 1.276 retrieving revision 1.277 diff -C2 -d -r1.276 -r1.277 *** Parser.jj 27 Nov 2004 16:52:52 -0000 1.276 --- Parser.jj 28 Nov 2004 01:00:43 -0000 1.277 *************** *** 1131,1135 **** [ "extends" extensions=interfaces() ] "{" ! { res = new AbstractInterface(name,parameters,typeParametersVariances, extensions); } ( --- 1131,1135 ---- [ "extends" extensions=interfaces() ] "{" ! { res = bossa.syntax.dispatch.createAbstractInterface(name,parameters,typeParametersVariances, extensions); } ( *************** *** 1154,1158 **** [ "finally" { _finally = true; } ] "implements" interfaceName=ident() ";" ! { return new AbstractInterfaceImplementation(className, interfaceName, _finally, _interface); } --- 1154,1158 ---- [ "finally" { _finally = true; } ] "implements" interfaceName=ident() ";" ! { return new AbstractInterfaceImplementation(className, /*Node.none*/4, className, interfaceName, _finally, _interface); } |