[Nice-commit] Nice/src/bossa/syntax NiceMethod.java,1.37,1.38
Brought to you by:
bonniot
From: Daniel B. <bo...@us...> - 2004-03-26 10:59:41
|
Update of /cvsroot/nice/Nice/src/bossa/syntax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27505/src/bossa/syntax Modified Files: NiceMethod.java Log Message: No need to reset the existentialLevel upon exit, it is now guaranteed that an enter/leave occurs around existential mode. Index: NiceMethod.java =================================================================== RCS file: /cvsroot/nice/Nice/src/bossa/syntax/NiceMethod.java,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** NiceMethod.java 17 Mar 2004 16:55:34 -0000 1.37 --- NiceMethod.java 26 Mar 2004 10:48:41 -0000 1.38 *************** *** 349,357 **** { super.innerTypecheck(); ! try { ! implementation.innerTypecheck(); ! } finally { ! mlsub.typing.lowlevel.Engine.existentialLevel = 0; ! } } --- 349,353 ---- { super.innerTypecheck(); ! implementation.innerTypecheck(); } |