[Nice-commit] Nice/src/gnu/expr ClassExp.java,1.17,1.18
Brought to you by:
bonniot
From: Daniel B. <bo...@us...> - 2004-04-14 16:35:49
|
Update of /cvsroot/nice/Nice/src/gnu/expr In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8598/src/gnu/expr Modified Files: ClassExp.java Log Message: Properly walk over initial values of class fields. Index: ClassExp.java =================================================================== RCS file: /cvsroot/nice/Nice/src/gnu/expr/ClassExp.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** ClassExp.java 15 Dec 2003 02:40:16 -0000 1.17 --- ClassExp.java 14 Apr 2004 16:35:35 -0000 1.18 *************** *** 599,603 **** decl = decl.nextDecl()) if (decl.isStatic() && decl.value != null) ! walker.walkExpression(decl.value); } finally --- 599,603 ---- decl = decl.nextDecl()) if (decl.isStatic() && decl.value != null) ! decl.value.walk(walker); } finally |