Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for Hoolehan (0.9 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

        public val DOUBLE: KaType
            get() = double
    
        public abstract val boolean: KaType
    
        @Deprecated("Use 'boolean' instead.", replaceWith = ReplaceWith("boolean"))
        public val BOOLEAN: KaType
            get() = boolean
    
        public abstract val char: KaType
    
        @Deprecated("Use 'char' instead.", replaceWith = ReplaceWith("char"))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

    
    private fun KaSession.isSimpleVariableAccessCall(reference: KtReferenceExpression): Boolean =
        when (val resolution = reference.resolveCallOld()) {
            is KaSuccessCallInfo ->
                resolution.call is KaSimpleVariableAccessCall
            else ->
                false
        }
    
    private fun returnsUnit(declaration: KtDeclaration): Boolean {
        return analyze(declaration) {
            declaration.getReturnKaType().isUnit
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirDataFlowInfoProvider.kt

                }
            }
        }
    
        private inner class FirElementCollector : FirDefaultVisitorVoid() {
            val hasJumps: Boolean
                get() = firReturnTargets.isNotEmpty() || firLoopJumpTargets.isNotEmpty()
    
            val hasMultipleJumpKinds: Boolean
                get() = (firReturnExpressions.size.sign + firBreakExpressions.size.sign + firContinueExpressions.size.sign) > 1
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 14:04:46 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolContainingDeclarationProvider.kt

        }
    
        private fun isSyntheticSymbolWithParentSource(symbol: KaSymbol): Boolean {
            return when (symbol.origin) {
                KaSymbolOrigin.SOURCE_MEMBER_GENERATED -> true
                else -> false
            }
        }
    
        private fun isOrdinarySymbolWithSource(symbol: KaSymbol): Boolean {
            return symbol.origin == KaSymbolOrigin.SOURCE
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

                }
            }
        }
    
    internal val CallableMemberDescriptor.isExplicitOverride: Boolean
        get() {
            return (this !is PropertyAccessorDescriptor
                    && kind != CallableMemberDescriptor.Kind.FAKE_OVERRIDE
                    && overriddenDescriptors.isNotEmpty())
        }
    
    internal val ClassDescriptor.isInterfaceLike: Boolean
        get() = when (kind) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/testUtils.kt

            is KaPackageSymbol -> fqName.toString()
            is KaEnumEntrySymbol -> callableId?.toString() ?: name.asString()
            is KaSymbol -> DebugSymbolRenderer().render(analysisSession, this)
            is Boolean -> toString()
            is Map<*, *> -> if (isEmpty()) "{}" else entries.joinToString(
                separator = ",\n  ",
                prefix = "{\n  ",
                postfix = "\n}"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirPsiTypeProvider.kt

        override fun asPsiType(
            type: KaType,
            useSitePosition: PsiElement,
            allowErrorTypes: Boolean,
            mode: KaTypeMappingMode,
            isAnnotationMethod: Boolean,
            suppressWildcards: Boolean?,
            preserveAnnotations: Boolean,
        ): PsiType? {
            val coneType = type.coneType
    
            with(rootModuleSession.typeContext) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtVariableLikeSymbol.kt

        public abstract val hasGetter: Boolean
        public abstract val hasSetter: Boolean
    
        public abstract val getter: KaPropertyGetterSymbol?
        public abstract val setter: KaPropertySetterSymbol?
        public abstract val backingFieldSymbol: KaBackingFieldSymbol?
    
        public abstract val hasBackingField: Boolean
    
        public abstract val isDelegatedProperty: Boolean
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ScopeProvider.kt

        }
    
        private class DeclaredMemberScope(
            val allMemberScope: MemberScope,
            val owner: ClassDescriptor,
            val forDelegatedMembersOnly: Boolean
        ) : MemberScope {
            constructor(owner: ClassDescriptor, forDelegatedMembersOnly: Boolean = false) :
                    this(owner.unsubstitutedMemberScope, owner, forDelegatedMembersOnly)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirTypeProvider.kt

        }
    
        override fun getDirectSuperTypes(type: KaType, shouldApproximate: Boolean): List<KaType> {
            require(type is KaFirType)
            return type.coneType.getDirectSuperTypes(shouldApproximate).mapTo(mutableListOf()) { it.asKtType() }
        }
    
        private fun ConeKotlinType.getDirectSuperTypes(shouldApproximate: Boolean): Sequence<ConeKotlinType> {
            return when (this) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 10:25:23 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top