*******************************************************************************/
package net.sourceforge.phpdt.internal.compiler.lookup;
-public class InnerEmulationDependency{
+public class InnerEmulationDependency {
public BlockScope scope;
+
public boolean wasEnclosingInstanceSupplied;
-
- public InnerEmulationDependency(BlockScope scope, boolean wasEnclosingInstanceSupplied) {
+
+ public InnerEmulationDependency(BlockScope scope,
+ boolean wasEnclosingInstanceSupplied) {
this.scope = scope;
this.wasEnclosingInstanceSupplied = wasEnclosingInstanceSupplied;
}