[Nice-commit] Nice/testsuite/compiler/classes typeParameters.testsuite,1.19,1.20
Brought to you by:
bonniot
|
From: Daniel B. <bo...@us...> - 2005-03-01 17:37:02
|
Update of /cvsroot/nice/Nice/testsuite/compiler/classes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27179/testsuite/compiler/classes Modified Files: typeParameters.testsuite Log Message: Make sure that constructors with defaults omitted are compiled first so they get unmangled names, in case they clash with ones with all values. Cleaned up DefaultConstructor by creating a class CompiledConstructor to handle the details of bytecode generation. Index: typeParameters.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/classes/typeParameters.testsuite,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** typeParameters.testsuite 12 Aug 2004 23:21:41 -0000 1.19 --- typeParameters.testsuite 1 Mar 2005 17:36:35 -0000 1.20 *************** *** 238,241 **** --- 238,242 ---- /// PASS + Foo<int> foo = new Foo(); /// Toplevel interface A<T> {} |