Add "kotlin.jvm" to default imports on JVM

This commit is contained in:
Andrey Breslav
2014-06-17 18:31:03 +04:00
parent 00bd8cee82
commit f2bc26888c
@@ -50,6 +50,7 @@ public enum AnalyzerFacadeForJVM implements AnalyzerFacade {
public static final List<ImportPath> DEFAULT_IMPORTS = ImmutableList.of(
new ImportPath("java.lang.*"),
new ImportPath("kotlin.*"),
new ImportPath("kotlin.jvm.*"),
new ImportPath("kotlin.io.*"),
new ImportPath("kotlin.reflect.*")
);