[Nice-commit] Nice/src/bossa/modules Package.java,1.84,1.85
Brought to you by:
bonniot
From: <bo...@us...> - 2003-03-04 16:50:28
|
Update of /cvsroot/nice/Nice/src/bossa/modules In directory sc8-pr-cvs1:/tmp/cvs-serv26840/src/bossa/modules Modified Files: Package.java Log Message: Fixed compilation of packages cyclically importing each other (exhibited by some code written by Alex). Index: Package.java =================================================================== RCS file: /cvsroot/nice/Nice/src/bossa/modules/Package.java,v retrieving revision 1.84 retrieving revision 1.85 diff -C2 -d -r1.84 -r1.85 *** Package.java 12 Feb 2003 12:48:34 -0000 1.84 --- Package.java 4 Mar 2003 16:50:20 -0000 1.85 *************** *** 220,223 **** --- 220,233 ---- } + public void typedResolve() + { + ast.typedResolve(); + } + + public void localResolve() + { + ast.localResolve(); + } + public void compile() { |