Add default import "kotlin.reflect"

This commit is contained in:
Alexander Udalov
2014-05-08 20:16:40 +04:00
parent 0c2c203e96
commit 9503056dd5
2 changed files with 6 additions and 2 deletions
@@ -50,7 +50,9 @@ public enum AnalyzerFacadeForJVM implements AnalyzerFacade {
public static final List<ImportPath> DEFAULT_IMPORTS = ImmutableList.of(
new ImportPath("java.lang.*"),
new ImportPath("kotlin.*"),
new ImportPath("kotlin.io.*"));
new ImportPath("kotlin.io.*"),
new ImportPath("kotlin.reflect.*")
);
public static class JvmSetup extends BasicSetup {