Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 627 for fqName (0.14 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/utils/firUtils.kt

    }
    
    /**
     * @receiver A symbol that needs to be imported
     * @param useSiteSession A use-site fir session.
     * @return An [FqName] by which this symbol can be imported (if it is possible)
     */
    internal fun FirCallableSymbol<*>.computeImportableName(useSiteSession: FirSession): FqName? {
        if (callableId.isLocal) return null
    
        // SAM constructors are synthetic, but can be imported
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunction.ir.txt

    MODULE_FRAGMENT
      FILE fqName:<root> fileName:context.kt
        FUN name:call visibility:local modality:FINAL <> (a:kotlin.Int, b:kotlin.String) returnType:kotlin.Unit
          VALUE_PARAMETER name:a index:0 type:kotlin.Int
          VALUE_PARAMETER name:b index:1 type:kotlin.String
        FUN name:test visibility:public modality:FINAL <> () returnType:kotlin.Unit
          BLOCK_BODY
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirScopeProvider.kt

            else -> unexpectedElementError("scope", firScope)
        }
    
        private fun createPackageScope(fqName: FqName): KaFirPackageScope {
            return KaFirPackageScope(fqName, analysisSession)
        }
    
        private fun convertToKtTypeScope(firScope: FirScope): KaTypeScope {
            return when (firScope) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionParameterClosure.ir.txt

    MODULE_FRAGMENT
      FILE fqName:<root> fileName:context.kt
        FUN name:call visibility:local modality:FINAL <> () returnType:kotlin.Unit
        FUN name:consume visibility:public modality:FINAL <> (n:kotlin.Int) returnType:kotlin.Unit
          VALUE_PARAMETER name:n index:0 type:kotlin.Int
          BLOCK_BODY
        FUN name:test visibility:public modality:FINAL <> (x:kotlin.Int) returnType:kotlin.Unit
          VALUE_PARAMETER name:x index:0 type:kotlin.Int
          BLOCK_BODY
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/base/KtFe10PsiSymbolUtils.kt

        }
    
        return CallableId(
            packageName = containingFile.packageFqName,
            className = if (className.isNotEmpty()) FqName.fromSegments(className.asReversed()) else null,
            callableName = Name.identifier(selfName),
            pathToLocal = if (localName.isNotEmpty()) FqName.fromSegments(localName.asReversed()) else null
        )
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10DebugTypeRenderer.kt

                    renderTypeProjection(it, printer)
                }
            }
        }
    
        private fun renderFqName(fqName: FqName, printer: PrettyPrinter) {
            printer.printCollection(fqName.pathSegments(), separator = ".") {
                append(it.render())
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGeneratorTest.groovy

                        return false;
                    }
                }
            """
            assertThat(compilation).succeededWithoutWarnings()
            assertThat(compilation)
                .generatedSourceFile(fqName(expectedJvmInterceptors))
                .containsElementsIn(expectedJvmInterceptors)
        }
    
        def "compilation should fail if non-gradle type is instrumented with @InterceptInherited"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 19:21:09 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/klibSourceFileProvider/AbstractGetKlibSourceFileNameTest.kt

                        ?.let { fqNameString -> FqName(fqNameString) }
                        ?: fail("Missing packageFqName")
    
    
                    packageFragmentProto.class_List.forEach { classProto ->
                        val classId = ClassId.fromString(nameResolver.getQualifiedClassName(classProto.fqName))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/KotlinSourceQueries.kt

            "${declaringClass.baseQualifiedKotlinName}.${field.name}".let { fqn ->
                collectDescendantsOfType<KtProperty>()
                    .firstOrNull { it.fqName?.asString() == fqn }
                    ?.isDocumentedAsSince(version) == true
            }
    
        private
        fun KtFile.isDocumentedAsSince(version: String, declaringClass: CtClass, constructor: CtConstructor): Boolean {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 20:38:19 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ImportOptimizer.kt

    import org.jetbrains.kotlin.descriptors.DeclarationDescriptor
    import org.jetbrains.kotlin.descriptors.PackageViewDescriptor
    import org.jetbrains.kotlin.descriptors.TypeAliasDescriptor
    import org.jetbrains.kotlin.name.FqName
    import org.jetbrains.kotlin.psi.*
    import org.jetbrains.kotlin.resolve.DescriptorUtils
    import org.jetbrains.kotlin.resolve.descriptorUtil.fqNameSafe
    import org.jetbrains.kotlin.resolve.descriptorUtil.getImportableDescriptor
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top