[Nice-commit] Nice/src/bossa/syntax CustomConstructor.java,1.11,1.12
Brought to you by:
bonniot
From: <bo...@us...> - 2004-02-03 12:12:22
|
Update of /cvsroot/nice/Nice/src/bossa/syntax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14118/src/bossa/syntax Modified Files: CustomConstructor.java Log Message: Make sure that constructors imported from compiled packages are available early enough for all uses. Index: CustomConstructor.java =================================================================== RCS file: /cvsroot/nice/Nice/src/bossa/syntax/CustomConstructor.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** CustomConstructor.java 22 Dec 2003 20:28:10 -0000 1.11 --- CustomConstructor.java 3 Feb 2004 12:10:01 -0000 1.12 *************** *** 267,275 **** super(def, FormalParameters.readBytecodeAttribute(attr)); this.method = method; } void resolve() { - TypeConstructors.addConstructor(classe.definition.tc, this); addConstructorCallSymbol(); } --- 267,275 ---- super(def, FormalParameters.readBytecodeAttribute(attr)); this.method = method; + TypeConstructors.addConstructor(classe.definition.tc, this); } void resolve() { addConstructorCallSymbol(); } |