47c7181f2a
The main reasoning for the module is to avoid running any compiler tests while executing run configuration that searches tests across module dependencies.
34 lines
1.4 KiB
Kotlin
34 lines
1.4 KiB
Kotlin
/*
|
|
* Copyright 2010-2015 JetBrains s.r.o.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package org.jetbrains.kotlin.scripts
|
|
|
|
import com.intellij.psi.PsiFile
|
|
import org.jetbrains.kotlin.descriptors.ScriptDescriptor
|
|
import org.jetbrains.kotlin.name.Name
|
|
import org.jetbrains.kotlin.psi.KtScript
|
|
import org.jetbrains.kotlin.script.KotlinScriptDefinition
|
|
import org.jetbrains.kotlin.script.ScriptNameUtil
|
|
import org.jetbrains.kotlin.script.ScriptParameter
|
|
|
|
class TestScriptDefinition(
|
|
val extension: String,
|
|
val parameters: List<ScriptParameter>
|
|
) : KotlinScriptDefinition {
|
|
override fun getScriptParameters(scriptDescriptor: ScriptDescriptor) = parameters
|
|
override fun isScript(file: PsiFile): Boolean = file.name.endsWith(extension)
|
|
override fun getScriptName(script: KtScript): Name = ScriptNameUtil.fileNameWithExtensionStripped(script, extension)
|
|
} |