[Nice-commit] Nice/src/bossa/link Dispatch.java,1.73,1.74 ImportedAlternative.java,1.10,1.11
Brought to you by:
bonniot
From: Arjan B. <ar...@us...> - 2004-12-01 02:00:44
|
Update of /cvsroot/nice/Nice/src/bossa/link In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4921/F:/nice/src/bossa/link Modified Files: Dispatch.java ImportedAlternative.java Log Message: Moved the static part of PrimitiveType to nice.tools.typing and converted the rest. Index: ImportedAlternative.java =================================================================== RCS file: /cvsroot/nice/Nice/src/bossa/link/ImportedAlternative.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** ImportedAlternative.java 7 Aug 2004 14:20:27 -0000 1.10 --- ImportedAlternative.java 1 Dec 2004 02:00:30 -0000 1.11 *************** *** 63,67 **** while ((p = bossa.syntax.dispatch.readPattern(rep, at)) != null) { ! if (p.getTC() == bossa.syntax.PrimitiveType.arrayTC) /* Special treatment for arrays: they are compiled into Object, --- 63,67 ---- while ((p = bossa.syntax.dispatch.readPattern(rep, at)) != null) { ! if (p.getTC() == nice.tools.typing.PrimitiveType.arrayTC) /* Special treatment for arrays: they are compiled into Object, Index: Dispatch.java =================================================================== RCS file: /cvsroot/nice/Nice/src/bossa/link/Dispatch.java,v retrieving revision 1.73 retrieving revision 1.74 diff -C2 -d -r1.73 -r1.74 *** Dispatch.java 25 Nov 2004 19:28:19 -0000 1.73 --- Dispatch.java 1 Dec 2004 02:00:30 -0000 1.74 *************** *** 24,28 **** import mlsub.typing.MonotypeLeqCst; import mlsub.typing.lowlevel.Element; ! import gnu.bytecode.ClassType; --- 24,28 ---- import mlsub.typing.MonotypeLeqCst; import mlsub.typing.lowlevel.Element; ! import nice.tools.typing.PrimitiveType; import gnu.bytecode.ClassType; |