Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for noin (0.15 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

    internal val KotlinType.ktNullability: KtTypeNullability
        get() = when {
            this.isNullabilityFlexible() -> KtTypeNullability.UNKNOWN
            this.isMarkedNullable -> KtTypeNullability.NULLABLE
            else -> KtTypeNullability.NON_NULLABLE
        }
    
    internal val DeclarationDescriptorWithVisibility.ktVisibility: Visibility
        get() = when (visibility) {
            DescriptorVisibilities.PUBLIC -> Visibilities.Public
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 07:15:56 GMT 2024
    - 33.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirScopeProvider.kt

        private enum class DeclaredMemberScopeKind {
            NON_STATIC,
    
            STATIC,
    
            /**
             * A scope containing both non-static and static members. A smart combined scope (as opposed to a naive combination of [KtScope]s
             * with [getCompositeScope]) avoids duplicate inner classes, as they are contained in non-static and static scopes.
             *
    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)
Back to top