NoArg: Add IDE integration
This commit is contained in:
committed by
Yan Zhulanow
parent
be26246a3e
commit
c705f0c437
@@ -51,6 +51,9 @@ public interface KotlinPaths {
|
||||
@NotNull
|
||||
File getAllOpenPluginJarPath();
|
||||
|
||||
@NotNull
|
||||
File getNoArgPluginJarPath();
|
||||
|
||||
@NotNull
|
||||
File getCompilerPath();
|
||||
|
||||
|
||||
@@ -88,6 +88,12 @@ public class KotlinPathsFromHomeDir implements KotlinPaths {
|
||||
return getLibraryFile(PathUtil.ALLOPEN_PLUGIN_JAR_NAME);
|
||||
}
|
||||
|
||||
@NotNull
|
||||
@Override
|
||||
public File getNoArgPluginJarPath() {
|
||||
return getLibraryFile(PathUtil.NOARG_PLUGIN_JAR_NAME);
|
||||
}
|
||||
|
||||
@NotNull
|
||||
@Override
|
||||
public File getCompilerPath() {
|
||||
|
||||
@@ -30,6 +30,7 @@ public class PathUtil {
|
||||
|
||||
public static final String JS_LIB_JAR_NAME = "kotlin-jslib.jar";
|
||||
public static final String ALLOPEN_PLUGIN_JAR_NAME = "allopen-compiler-plugin.jar";
|
||||
public static final String NOARG_PLUGIN_JAR_NAME = "noarg-compiler-plugin.jar";
|
||||
public static final String JS_LIB_SRC_JAR_NAME = "kotlin-jslib-sources.jar";
|
||||
public static final String KOTLIN_JAVA_RUNTIME_JAR = "kotlin-runtime.jar";
|
||||
public static final String KOTLIN_JAVA_REFLECT_JAR = "kotlin-reflect.jar";
|
||||
|
||||
Reference in New Issue
Block a user