org.jetbrains.kotlin.cli.jvm.compiler.EnvironmentConfigFiles Java Examples

The following examples show how to use org.jetbrains.kotlin.cli.jvm.compiler.EnvironmentConfigFiles. 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 vote down vote up
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 4 votes vote down vote up
public KotlinCompiler() {
	this.paths = PathUtil.getKotlinPathsForCompiler();
	this.configPaths = EnvironmentConfigFiles.JVM_CONFIG_FILES;
}