Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for instead (0.27 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationsList.kt

         * ```
         * @param classId [ClassId] to search
         */
        public operator fun contains(classId: ClassId): Boolean
    
        @Deprecated("Use 'contains' instead.", replaceWith = ReplaceWith("contains(classId)"))
        public fun hasAnnotation(classId: ClassId): Boolean = contains(classId)
    
        /**
         * A list of annotations applied with specified [classId].
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtType.kt

        public abstract val qualifiers: List<KaClassTypeQualifier.KaResolvedClassTypeQualifier>
    
        @Deprecated("Use 'symbol' instead.", ReplaceWith("symbol"))
        public val classSymbol: KaClassLikeSymbol
            get() = symbol
    
        @Deprecated("Use 'typeArguments' instead.", ReplaceWith("typeArguments"))
        public val ownTypeArguments: List<KaTypeProjection>
            get() = typeArguments
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotated.kt

     *
     * @see [KaAnnotationList.annotations]
     */
    @Deprecated("Use the 'annotations' the member property instead.")
    public val KaAnnotated.annotations: List<KaAnnotation>
        get() = annotations
    
    @Deprecated("Use 'annotations' instead.", replaceWith = ReplaceWith("annotations"))
    public val KaAnnotated.annotationInfos: List<KaAnnotationApplicationInfo>
        get() = annotations
    
    /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/preferCorrectResolve.kt

        <caret_context>val x = 0
    }
    
    // MODULE: main
    // MODULE_KIND: CodeFragment
    // CONTEXT_MODULE: context
    
    // FILE: fragment.kt
    // CODE_FRAGMENT_KIND: EXPRESSION
    // Need to choose public foo(Any) call instead of more specific but private call foo(Int)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 388 bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirEnumEntryInitializerSymbol.kt

            }
        }
    
        /**
         * [KaFirEnumEntryInitializerSymbol] is the required return type instead of [KaEnumEntryInitializerSymbol] to fulfill return type
         * subtyping requirements, as [KaEnumEntryInitializerSymbol] is not a subtype of
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtCallableSignature.kt

        /**
         * A [CallableId] of a substituted symbol
         */
        public open val callableId: CallableId? get() = withValidityAssertion { symbol.callableId }
    
        @Deprecated("Use `callableId` instead.", ReplaceWith("callableId"))
        public val callableIdIfNonLocal: CallableId? get() = callableId
    
        /**
         * Applies a [substitutor] to the given signature and return a new signature with substituted types.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneFirDirectInheritorsProvider.kt

            // which results in an exception since we don't have a decompiler for them. See KT-64898, KT-64899, and KT-64900. If not for these
            // issues, we would be able to use `analyze` instead of custom session logic.
            val session = LLFirSessionCache.getInstance(project).getSession(ktModule, preferBinary = true)
            return session.symbolProvider.getClassLikeSymbolByClassId(classId)
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtCallableSymbol.kt

        /**
         * The callable's [CallableId] if it exists, or `null` otherwise (e.g. when the callable is local).
         */
        public abstract val callableId: CallableId?
    
        @Deprecated("Use `callableId` instead.", ReplaceWith("callableId"))
        public val callableIdIfNonLocal: CallableId? get() = callableId
    
        public abstract val returnType: KaType
    
        public abstract val receiverParameter: KaReceiverParameterSymbol?
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/types/AbstractAbbreviatedTypeTest.kt

     * [TestModuleKind][org.jetbrains.kotlin.analysis.test.framework.test.configurators.TestModuleKind] supplied by generated tests applies to
     * the expansion-site module instead of the use-site module in these tests, as we want to check the `KaType` when it's built with an
     * expanded type from a library vs. from a source module. (Abbreviated types from libraries and from sources aren't necessarily constructed
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationApplication.kt

         * because effectively you already have all necessary information in [KaAnnotationApplicationInfo]
         */
        public val hasArguments: Boolean
    
        @Deprecated("Use 'hasArguments' instead.", replaceWith = ReplaceWith("hasArguments"))
        public val isCallWithArguments: Boolean
            get() = hasArguments
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top