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
@@ -49,7 +49,9 @@ public final class AnalyzerFacadeForJS {
public static final List<ImportPath> DEFAULT_IMPORTS = ImmutableList.of(
new ImportPath("js.*"),
new ImportPath("java.lang.*"),
new ImportPath("kotlin.*"));
new ImportPath("kotlin.*"),
new ImportPath("kotlin.reflect.*")
);
private AnalyzerFacadeForJS() {
}