All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jetbrains.kotlin.analysis.project.structure.dependencies.kt Maven / Gradle / Ivy

/*
 * Copyright 2010-2024 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.
 */

@file:Suppress("DEPRECATION")

package org.jetbrains.kotlin.analysis.project.structure

import org.jetbrains.kotlin.analysis.api.KaImplementationDetail

@OptIn(KaImplementationDetail::class)
@Deprecated("Use 'org.jetbrains.kotlin.analysis.api.projectStructure.directRegularDependenciesOfType' instead.")
public inline fun  KtModule.directRegularDependenciesOfType(): Sequence = getDirectRegularDependenciesOfType()

@OptIn(KaImplementationDetail::class)
@Deprecated("Use 'org.jetbrains.kotlin.analysis.api.projectStructure.directFriendDependenciesOfType' instead.")
public inline fun  KtModule.directFriendDependenciesOfType(): Sequence = getDirectFriendDependenciesOfType()

@OptIn(KaImplementationDetail::class)
@Deprecated("Use 'org.jetbrains.kotlin.analysis.api.projectStructure.directDependsOnDependenciesOfType' instead.")
public inline fun  KtModule.directDependsOnDependenciesOfType(): Sequence = getDirectDependsOnDependenciesOfType()

@Deprecated("Use 'org.jetbrains.kotlin.analysis.api.projectStructure.allDirectDependencies' instead.")
public fun KtModule.allDirectDependencies(): Sequence = getAllDirectDependencies()

@OptIn(KaImplementationDetail::class)
@Deprecated("Use 'org.jetbrains.kotlin.analysis.api.projectStructure.allDirectDependenciesOfType' instead.")
public inline fun  KtModule.allDirectDependenciesOfType(): Sequence = getAllDirectDependenciesOfType()




© 2015 - 2025 Weber Informatics LLC | Privacy Policy