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

org.jetbrains.kotlin.fir.extensions.generatedDeclarationsUtils.kt Maven / Gradle / Ivy

There is a newer version: 2.1.0-RC
Show newest version
/*
 * Copyright 2010-2023 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.fir.extensions

import org.jetbrains.kotlin.fir.FirSession
import org.jetbrains.kotlin.fir.declarations.FirCallableDeclaration
import org.jetbrains.kotlin.fir.declarations.FirClassLikeDeclaration
import org.jetbrains.kotlin.fir.declarations.FirRegularClass
import org.jetbrains.kotlin.fir.scopes.impl.declaredMemberScope
import org.jetbrains.kotlin.fir.scopes.processClassifiersByName
import org.jetbrains.kotlin.fir.symbols.impl.FirClassLikeSymbol

fun FirRegularClass.generatedNestedClassifiers(session: FirSession): List {
    val scope = session.declaredMemberScope(this, memberRequiredPhase = null)
    val result = mutableListOf()
    for (name in scope.getClassifierNames()) {
        scope.processClassifiersByName(name) {
            if (it.fir.origin.generated) {
                // Plugins can not generate type parameters, so it's safe to cast symbol here
                require(it is FirClassLikeSymbol<*>) { "Plugins can not generate type parameters, but had $it" }
                result += it.fir
            }
        }
    }
    return result
}

fun FirRegularClass.generatedMembers(session: FirSession): List {
    val scope = session.declaredMemberScope(this, memberRequiredPhase = null)
    val result = mutableListOf()
    for (name in scope.getCallableNames()) {
        scope.processFunctionsByName(name) {
            if (it.fir.origin.generated) {
                result += it.fir
            }
        }
        scope.processPropertiesByName(name) {
            if (it.fir.origin.generated) {
                result += it.fir
            }
        }
    }
    scope.processDeclaredConstructors {
        if (it.fir.origin.generated) {
            result += it.fir
        }
    }
    return result
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy