Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,337 for symbolz (0.13 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/AbstractMemberScopeTests.kt

    }
    
    abstract class AbstractStaticDeclaredMemberScopeTest : AbstractMemberScopeTestBase() {
        override fun KaSession.getScope(symbol: KaSymbolWithMembers): KaScope = symbol.getStaticDeclaredMemberScope()
    }
    
    abstract class AbstractCombinedDeclaredMemberScopeTest : AbstractMemberScopeTestBase() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSignatureSubstitutor.kt

    import org.jetbrains.kotlin.fir.symbols.impl.FirFunctionSymbol
    import org.jetbrains.kotlin.fir.symbols.impl.FirVariableSymbol
    
    internal class KaFirSignatureSubstitutor(
        override val analysisSession: KaFirSession
    ) : KaAbstractSignatureSubstitutor(), KaFirSessionComponent {
        override fun <S : KaFunctionLikeSymbol> asSignature(symbol: S): KaFunctionLikeSignature<S> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirTypeCreator.kt

                    classSymbol.toLookupTag()
                }
                is KaClassTypeBuilder.BySymbol -> {
                    val symbol = builder.symbol
                    check(symbol is KaFirSymbol<*>)
                    (symbol.firSymbol as FirClassLikeSymbol<*>).toLookupTag()
                }
            }
    
            val typeContext = rootModuleSession.typeContext
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/callables/KtCallableSignatureRenderer.kt

    import org.jetbrains.kotlin.analysis.api.symbols.KaCallableSymbol
    import org.jetbrains.kotlin.analysis.api.symbols.markers.KaNamedSymbol
    import org.jetbrains.kotlin.analysis.utils.printer.PrettyPrinter
    import org.jetbrains.kotlin.lexer.KtKeywordToken
    
    public interface KaCallableSignatureRenderer {
        public fun renderCallableSignature(
            analysisSession: KaSession,
            symbol: KaCallableSymbol,
            keyword: KtKeywordToken?,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdversion/stdversion.go

    	"golang.org/x/tools/go/ast/inspector"
    	"golang.org/x/tools/internal/typesinternal"
    	"golang.org/x/tools/internal/versions"
    )
    
    const Doc = `report uses of too-new standard library symbols
    
    The stdversion analyzer reports references to symbols in the standard
    library that were introduced by a Go release higher than the one in
    force in the referring file. (Recall that the file's Go version is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KaFirSimpleNameReference.kt

            referenceTargetSymbols.flatMap { symbol ->
                when (symbol) {
                    is KaFirSyntheticJavaPropertySymbol ->
                        if (isRead) {
                            listOfNotNull(symbol.javaGetterSymbol.psi)
                        } else {
                            if (symbol.javaSetterSymbol == null) listOfNotNull(symbol.javaGetterSymbol.psi)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtVisibilityCheckerMixIn.kt

        }
    
        /**
         * Returns true for effectively public symbols, including internal declarations with @PublishedApi annotation.
         * In 'Explicit API' mode explicit visibility modifier and explicit return types are required for such symbols.
         * See FirExplicitApiDeclarationChecker.kt
         */
        public fun isPublicApi(symbol: KaSymbolWithVisibility): Boolean = withValidityAssertion {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/KtRendererCodeStyle.kt

    import org.jetbrains.kotlin.analysis.api.annotations.KaAnnotated
    import org.jetbrains.kotlin.analysis.api.symbols.KaDeclarationSymbol
    import org.jetbrains.kotlin.analysis.api.symbols.KaEnumEntrySymbol
    import org.jetbrains.kotlin.analysis.api.symbols.KaTypeParameterSymbol
    import org.jetbrains.kotlin.analysis.api.symbols.KaValueParameterSymbol
    import org.jetbrains.kotlin.analysis.api.types.KaType
    
    public interface KaRendererCodeStyle {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirTypeProvider.kt

        }
    
        override fun buildSelfClassType(symbol: KaNamedClassOrObjectSymbol): KaType {
            require(symbol is KaFirNamedClassOrObjectSymbol)
            symbol.firSymbol.lazyResolveToPhase(FirResolvePhase.SUPER_TYPES)
            val firClass = symbol.firSymbol.fir
            val type = ConeClassLikeTypeImpl(
                firClass.symbol.toLookupTag(),
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 10:25:23 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/callables/KtCallableReturnTypeRenderer.kt

    import org.jetbrains.kotlin.analysis.api.symbols.KaCallableSymbol
    import org.jetbrains.kotlin.analysis.api.symbols.KaConstructorSymbol
    import org.jetbrains.kotlin.analysis.utils.printer.PrettyPrinter
    import org.jetbrains.kotlin.types.Variance
    
    public interface KaCallableReturnTypeRenderer {
        public fun renderReturnType(
            analysisSession: KaSession,
            symbol: KaCallableSymbol,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top