summaryrefslogtreecommitdiff
path: root/plugins/kotlin/uast/uast-kotlin-base/src/org/jetbrains/uast/kotlin/internal/KotlinFakeUElement.kt
blob: 7e3f8debd82409ec5249f4a993b30393d5a41380 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.

package org.jetbrains.uast.kotlin.internal

import com.intellij.psi.PsiElement
import org.jetbrains.annotations.ApiStatus

@ApiStatus.Internal
interface KotlinFakeUElement {
    fun unwrapToSourcePsi(): List<PsiElement>
}