[Nice-commit] Nice/debian changelog,1.231,1.232
Brought to you by:
bonniot
From: <ar...@us...> - 2003-11-28 16:43:32
|
Update of /cvsroot/nice/Nice/debian In directory sc8-pr-cvs1:/tmp/cvs-serv15075/F:/nice/debian Modified Files: changelog Log Message: Updated changelog. Index: changelog =================================================================== RCS file: /cvsroot/nice/Nice/debian/changelog,v retrieving revision 1.231 retrieving revision 1.232 diff -C2 -d -r1.231 -r1.232 *** changelog 25 Nov 2003 19:22:58 -0000 1.231 --- changelog 28 Nov 2003 16:43:29 -0000 1.232 *************** *** 12,17 **** final long serialVersionUID = 123456789L; } * Bug fixes (accessing static fields of an superclass or interface, ! compilation of polymorphic tuples, ...) -- --- 12,30 ---- final long serialVersionUID = 123456789L; } + * Enums are serializable now and have a family() method that returns a list + of all elements in that enum. + * Reduced memory usage when doing multiple compilations in one jvm. + * Added alternative syntax for patterns in method implementations. + 'Type param' for 'param@Type' and '#Type param' for 'param#Type + example usage: + class Dummy { + int x; + equals(Dummy other) = this.x == other.x; + } + * Stricter typechecking of anonymous and local functions. * Bug fixes (accessing static fields of an superclass or interface, ! compilation of polymorphic tuples, captured 'this' in initializer, ! duplication of constructors in bytecode, disappearing contracts during ! recompilation, ... ) -- |