Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for berate (0.15 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ScopeProvider.kt

            val chainedScope = ChainedMemberScope.create(scopeDescription, packageFragments.map { it.getMemberScope() })
            return KtFe10PackageScope(chainedScope, packageSymbol, analysisContext)
        }
    
        override fun getCompositeScope(subScopes: List<KtScope>): KtScope {
            return KtCompositeScope.create(subScopes, token)
        }
    
        override fun getTypeScope(type: KtType): KtTypeScope {
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 12.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                listOfQualifierToShortenInfo = emptyList(),
                thisLabelsToShorten = emptyList(),
                kDocQualifiersToShorten = emptyList(),
            )
    
            val towerContext = FirTowerDataContextProvider.create(firResolveSession, declarationToVisit)
    
            //TODO: collect all usages of available symbols in the file and prevent importing symbols that could introduce name clashes, which
            // may alter the meaning of existing code.
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:51:33 GMT 2024
    - 69.5K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/KtFirAnnotationListForReceiverParameter.kt

            get() = withValidityAssertion {
                annotationClassIds(firCallableSymbol, useSiteSession, receiverParameter)
            }
    
        companion object {
            fun create(firCallableSymbol: FirCallableSymbol<*>, builder: KtSymbolByFirBuilder): KtAnnotationsList {
                val receiverParameter = firCallableSymbol.receiverParameter
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 07:15:56 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/KtFirAnnotationListForDeclaration.kt

        }
    
        override val annotationClassIds: Collection<ClassId>
            get() = withValidityAssertion {
                annotationClassIds(firSymbol, useSiteSession)
            }
    
        companion object {
            fun create(firSymbol: FirBasedSymbol<*>, builder: KtSymbolByFirBuilder): KtAnnotationsList {
                return when {
                    firSymbol is FirBackingFieldSymbol && firSymbol.propertySymbol.annotations.any { it.useSiteTarget == null } ->
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 07:15:56 GMT 2024
    - 3K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/annotations/KtFe10AnnotationsList.kt

                    null
                } else {
                    transformer(index - ignoredAnnotationsCounter, annotation)
                }
            }
        }
    
        companion object {
            fun create(
                fe10Annotations: Annotations,
                analysisContext: Fe10AnalysisContext,
                ignoreAnnotations: Set<ClassId> = emptySet(),
            ): KtAnnotationsList {
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Thu Apr 25 07:15:56 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirScopeProvider.kt

            return createPackageScope(packageSymbol.fqName)
        }
    
        override fun getCompositeScope(subScopes: List<KtScope>): KtScope {
            return KtCompositeScope.create(subScopes, token)
        }
    
        override fun getTypeScope(type: KtType): KtTypeScope? {
            check(type is KtFirType) { "KtFirScopeProvider can only work with KtFirType, but ${type::class} was provided" }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 18.7K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/KtFirAnnotationListForType.kt

            get() = withValidityAssertion {
                coneType.customAnnotationsWithLazyResolve(FirResolvePhase.TYPES).mapNotNull { it.toAnnotationClassId(useSiteSession) }
            }
    
        companion object {
            fun create(coneType: ConeKotlinType, builder: KtSymbolByFirBuilder): KtAnnotationsList {
                return if (coneType.customAnnotations.isEmpty()) {
                    KtEmptyAnnotationsList(builder.token)
                } else {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 07:15:56 GMT 2024
    - 4.7K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CallResolver.kt

                val dataFlowValueFactory = DataFlowValueFactoryImpl(analysisContext.languageVersionSettings)
    
                val callResolutionContext = BasicCallResolutionContext.create(
                    bindingTrace, resolutionScope, call, TypeUtils.NO_EXPECTED_TYPE, dataFlowInfo,
                    ContextDependency.INDEPENDENT, CheckArgumentTypesMode.CHECK_VALUE_ARGUMENTS,
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Mon Apr 29 12:48:54 GMT 2024
    - 34.8K bytes
    - Viewed (0)
Back to top