Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Glasser (0.24 sec)

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

        private fun areClassesOrInterfacesIncompatible(classesOrInterfaces: Collection<ClassDescriptor>): Boolean {
            val classes = classesOrInterfaces.filter { !it.isInterfaceLike }
            return when {
                classes.size >= 2 -> true
                !classes.any { it.isFinalOrEnum } -> false
                classesOrInterfaces.size > classes.size -> true
                else -> false
            }
        }
    }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Jan 29 09:37:59 GMT 2024
    - 23.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

            // resolve individual parts of it because in FIR, the entire qualified access is one element.
            if (referencedClass.isLocal) {
                // TODO: handle local classes after KT-47135 is fixed
                return referencedSymbolsByFir
            } else {
                var qualifiedAccess: KtDotQualifiedExpression = fullQualifiedAccess
                val referencedClassId =
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Apr 15 10:59:01 GMT 2024
    - 37.5K bytes
    - Viewed (0)
  3. .space/CODEOWNERS

    /.fleet/ "Kotlin Build Infrastructure"
    
    /.space/ "Kotlin Build Infrastructure"
    
    /analysis/ "Kotlin IDE Analysis Core"
    /analysis/light-classes-base/ Dmitry.Gridin
    /analysis/symbol-light-classes/ Dmitry.Gridin
    /analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt "Kotlin Compiler Core"
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Thu Apr 25 19:58:12 GMT 2024
    - 23.9K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirPsiTypeProvider.kt

    import org.jetbrains.kotlin.analysis.api.lifetime.KtLifetimeToken
    import org.jetbrains.kotlin.analysis.api.types.KtType
    import org.jetbrains.kotlin.analysis.api.types.KtTypeMappingMode
    import org.jetbrains.kotlin.asJava.classes.KtLightClassForFacade
    import org.jetbrains.kotlin.asJava.elements.KtLightElement
    import org.jetbrains.kotlin.asJava.elements.KtLightParameter
    import org.jetbrains.kotlin.codegen.signature.BothSignatureWriter
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 12 13:29:57 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirMetadataCalculator.kt

        append("(")
        if (method.containingClass?.isEnum == true && method.isConstructor) {
            // Enum constructors are represented without name/ordinal in light classes, which seems fine because they don't have name/ordinal
            // in Java sources as well, even though the parameters are there in the bytecode. Since metadata stores JVM signatures, we're
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Mar 26 09:19:07 GMT 2024
    - 10K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirScopeProvider.kt

            /**
             * 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.
             *
             * A proper combined declared member scope kind also makes it easier to cache combined scopes directly (if needed).
             */
            COMBINED,
    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. .idea/inspectionProfiles/idea_default.xml

          <scope name="runtime.classes" level="WARNING" enabled="true">
            <option name="ignoreAddedToCollection" value="false" />
          </scope>
          <option name="ignoreAddedToCollection" value="false" />
        </inspection_tool>
        <inspection_tool class="AutoUnboxing" enabled="true" level="WARNING" enabled_by_default="false">
          <scope name="runtime.classes" level="WARNING" enabled="true" />
        </inspection_tool>
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Thu Nov 09 20:59:03 GMT 2023
    - 32.4K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

            }
    
            val receiverExpanded = actualReceiverType.expandedClassSymbol
            val expectedExpanded = type.expandedClassSymbol
    
            // if the underlying classes are equal, we consider the check successful
            // despite the possibility of different type bounds
            if (
                receiverExpanded != null &&
                receiverExpanded == expectedExpanded
            ) {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:47 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtSymbolByFirBuilder.kt

         * we consider that it's signature will not be changed by the SUBSTITUTION_OVERRIDE, so the wrapper can be unwrapped.
         *
         * This have a few caveats when it comes to the inner classes. TODO Provide a reference to some more in-detail description of that.
         *
         * @receiver A declaration that needs to be unwrapped.
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Mar 28 09:06:28 GMT 2024
    - 32.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolContainingDeclarationProvider.kt

                }
    
                is KtClassLikeSymbol -> {
                    val outerClassId = symbol.classIdIfNonLocal?.outerClassId
                    if (outerClassId != null) { // Won't work for local and top-level classes, or classes inside a script
                        val outerFirClassifier = symbolFirSession.firProvider.getFirClassifierByFqName(outerClassId) ?: return null
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:47 GMT 2024
    - 13.5K bytes
    - Viewed (0)
Back to top