1 11 package org.eclipse.jdt.internal.compiler.lookup; 12 13 public class InnerEmulationDependency{ 14 15 public BlockScope scope; 16 public boolean wasEnclosingInstanceSupplied; 17 18 public InnerEmulationDependency(BlockScope scope, boolean wasEnclosingInstanceSupplied) { 19 this.scope = scope; 20 this.wasEnclosingInstanceSupplied = wasEnclosingInstanceSupplied; 21 } 22 } 23 | Popular Tags |