X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/lookup/InnerEmulationDependency.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/lookup/InnerEmulationDependency.java index 0a7071d..9f67057 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/lookup/InnerEmulationDependency.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/lookup/InnerEmulationDependency.java @@ -10,12 +10,14 @@ *******************************************************************************/ 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; }