import net.sourceforge.phpdt.internal.compiler.impl.Constant;
import net.sourceforge.phpdt.internal.compiler.lookup.FieldBinding;
import net.sourceforge.phpdt.internal.compiler.lookup.LocalVariableBinding;
-import net.sourceforge.phpdt.internal.compiler.lookup.ReferenceBinding;
+//import net.sourceforge.phpdt.internal.compiler.lookup.ReferenceBinding;
/**
* Record initialization status during definite assignment analysis
/*
* Answer the total number of fields in enclosing types of a given type
*/
- static int numberOfEnclosingFields(ReferenceBinding type) {
-
- int count = 0;
- type = type.enclosingType();
- while (type != null) {
- count += type.fieldCount();
- type = type.enclosingType();
- }
- return count;
- }
+// static int numberOfEnclosingFields(ReferenceBinding type) {
+//
+// int count = 0;
+// type = type.enclosingType();
+// while (type != null) {
+// count += type.fieldCount();
+// type = type.enclosingType();
+// }
+// return count;
+// }
public int reachMode() {
return this.reachMode;