Dropping package facades:

- light classes: do not generate light class for package facade
- drop package facades as multifile classes compilation mode support
- get rid of some additional package facade fqName usages
- update tests for light classes
This commit is contained in:
Dmitry Petrov
2015-10-15 18:13:04 +03:00
parent e7fb7483c5
commit 149e70aa07
42 changed files with 60 additions and 373 deletions

View File

@@ -1,11 +1,11 @@
package test;
import org.jetbrains.annotations.NotNull;
import test.kotlin.KotlinPackage;
import test.kotlin.*;
public class TopLevelFunctionInDataFlowInspection {
void other(@NotNull Object some) {
Object foo = KotlinPackage.foo(some);
Object foo = TopLevelFunctionInDataFlowInspectionKt.foo(some);
}
}