Field renamed for easier debugging
This commit is contained in:
@@ -24,15 +24,15 @@ import org.jetbrains.jet.lang.resolve.AbstractScopeAdapter;
|
|||||||
*/
|
*/
|
||||||
public class JetScopeAdapter extends AbstractScopeAdapter {
|
public class JetScopeAdapter extends AbstractScopeAdapter {
|
||||||
@NotNull
|
@NotNull
|
||||||
private final JetScope scope;
|
private final JetScope workerScope;
|
||||||
|
|
||||||
public JetScopeAdapter(@NotNull JetScope scope) {
|
public JetScopeAdapter(@NotNull JetScope workerScope) {
|
||||||
this.scope = scope;
|
this.workerScope = workerScope;
|
||||||
}
|
}
|
||||||
|
|
||||||
@NotNull
|
@NotNull
|
||||||
@Override
|
@Override
|
||||||
protected final JetScope getWorkerScope() {
|
protected final JetScope getWorkerScope() {
|
||||||
return scope;
|
return workerScope;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user