org.jetbrains.kotlin.cli.jvm.compiler.KotlinCoreEnvironment Java Examples
The following examples show how to use
org.jetbrains.kotlin.cli.jvm.compiler.KotlinCoreEnvironment.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: KotlinSdkAliasReader.java From jig with Apache License 2.0 | 5 votes |
private KtFile sourceToKtFile(KotlinSource kotlinSource, String source) { CompilerConfiguration configuration = new CompilerConfiguration(); configuration.put(CLIConfigurationKeys.MESSAGE_COLLECTOR_KEY, MessageCollector.Companion.getNONE()); KotlinCoreEnvironment environment = KotlinCoreEnvironment.createForProduction(() -> { }, configuration, EnvironmentConfigFiles.JVM_CONFIG_FILES); Project project = environment.getProject(); LightVirtualFile virtualFile = new LightVirtualFile(kotlinSource.sourceFilePath().fineName(), KotlinFileType.INSTANCE, source); return (KtFile) PsiManager.getInstance(project).findFile(virtualFile); }
Example #2
Source File: KotlinCompiler.java From dynkt with GNU Affero General Public License v3.0 | 5 votes |
public Class<?> compileScript(File file) { log.info("Compiling '{}'...", file); CompilerConfiguration config = createCompilerConfig(file); config = addCurrentClassPath(config); KotlinCoreEnvironment env = KotlinCoreEnvironment.createForProduction(this, config, configPaths); return KotlinToJVMBytecodeCompiler.INSTANCE.compileScript(config, paths, env); }