Update dictionary: +infos, -kompiler
This commit is contained in:
Generated
+1
-1
@@ -7,9 +7,9 @@
|
|||||||
<w>fqname</w>
|
<w>fqname</w>
|
||||||
<w>goto</w>
|
<w>goto</w>
|
||||||
<w>gradle</w>
|
<w>gradle</w>
|
||||||
|
<w>infos</w>
|
||||||
<w>intrinsics</w>
|
<w>intrinsics</w>
|
||||||
<w>kdoc</w>
|
<w>kdoc</w>
|
||||||
<w>kompiler</w>
|
|
||||||
<w>memoize</w>
|
<w>memoize</w>
|
||||||
<w>memoized</w>
|
<w>memoized</w>
|
||||||
<w>multiline</w>
|
<w>multiline</w>
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
// !WITH_NEW_INFERENCE
|
// !WITH_NEW_INFERENCE
|
||||||
//KT-1293 Kompiler doesn't show error when element of Array<Int?> is assigned to Int
|
//KT-1293 Compiler doesn't show error when element of Array<Int?> is assigned to Int
|
||||||
|
|
||||||
package kt1293
|
package kt1293
|
||||||
|
|
||||||
|
|||||||
@@ -90,14 +90,14 @@ object CompilerRunnerUtil {
|
|||||||
environment: JpsCompilerEnvironment,
|
environment: JpsCompilerEnvironment,
|
||||||
out: PrintStream
|
out: PrintStream
|
||||||
): Any? = withCompilerClassloader(environment) { classLoader ->
|
): Any? = withCompilerClassloader(environment) { classLoader ->
|
||||||
val kompiler = Class.forName(compilerClassName, true, classLoader)
|
val compiler = Class.forName(compilerClassName, true, classLoader)
|
||||||
val exec = kompiler.getMethod(
|
val exec = compiler.getMethod(
|
||||||
"execAndOutputXml",
|
"execAndOutputXml",
|
||||||
PrintStream::class.java,
|
PrintStream::class.java,
|
||||||
Class.forName("org.jetbrains.kotlin.config.Services", true, classLoader),
|
Class.forName("org.jetbrains.kotlin.config.Services", true, classLoader),
|
||||||
Array<String>::class.java
|
Array<String>::class.java
|
||||||
)
|
)
|
||||||
exec.invoke(kompiler.newInstance(), out, environment.services, arguments)
|
exec.invoke(compiler.newInstance(), out, environment.services, arguments)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun invokeClassesFqNames(
|
fun invokeClassesFqNames(
|
||||||
|
|||||||
Reference in New Issue
Block a user