Skip to content
Permalink
v1.4.20
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
19 lines (15 sloc) 787 Bytes
/*
* Copyright 2010-2018 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.backend.common.extensions
import org.jetbrains.kotlin.extensions.ProjectExtensionDescriptor
import org.jetbrains.kotlin.ir.declarations.IrModuleFragment
import org.jetbrains.kotlin.ir.linkage.IrDeserializer
interface IrGenerationExtension : IrDeserializer.IrLinkerExtension {
companion object :
ProjectExtensionDescriptor<IrGenerationExtension>(
"org.jetbrains.kotlin.irGenerationExtension", IrGenerationExtension::class.java
)
fun generate(moduleFragment: IrModuleFragment, pluginContext: IrPluginContext)
}