Add default import "kotlin.reflect"
This commit is contained in:
+3
-1
@@ -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 {
|
||||
|
||||
|
||||
@@ -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() {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user