Instances of ChainedScope should always have a debugMessage

This commit is contained in:
Andrey Breslav
2013-12-26 14:21:56 +04:00
parent 9353bfc449
commit debacf0554
6 changed files with 10 additions and 9 deletions
@@ -32,7 +32,7 @@ public class JavaFullPackageScope extends ChainedScope implements JavaPackageFra
@NotNull JetScope kotlinPackageScope,
@NotNull JavaPurePackageScope purePackageScope
) {
super(packageFragment, kotlinPackageScope, purePackageScope);
super(packageFragment, "JavaFullPackageScope", kotlinPackageScope, purePackageScope);
this.purePackageScope = purePackageScope;
}