Scripting: update scripts in source roots handling
#KT-52525 fixed related to #KT-52735
This commit is contained in:
+22
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
* Copyright 2010-2022 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.extensions
|
||||
|
||||
import org.jetbrains.kotlin.config.CompilerConfiguration
|
||||
import org.jetbrains.kotlin.psi.KtFile
|
||||
|
||||
interface ProcessSourcesBeforeCompilingExtension {
|
||||
|
||||
companion object : ProjectExtensionDescriptor<ProcessSourcesBeforeCompilingExtension>(
|
||||
"org.jetbrains.kotlin.processSourcesBeforeCompilingExtension",
|
||||
ProcessSourcesBeforeCompilingExtension::class.java
|
||||
)
|
||||
|
||||
fun processSources(
|
||||
sources: Collection<KtFile>,
|
||||
configuration: CompilerConfiguration
|
||||
): Collection<KtFile>
|
||||
}
|
||||
Reference in New Issue
Block a user