Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for Gerber (0.23 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiDefaultSetterParameterSymbol.kt

            bindingContext[BindingContext.PROPERTY_ACCESSOR, accessorPsi]?.valueParameters?.single()
        }
    
        override val origin: KtSymbolOrigin
            get() = withValidityAssertion { KtSymbolOrigin.SOURCE_MEMBER_GENERATED }
    
        override val hasDefaultValue: Boolean
            get() = withValidityAssertion { false }
    
        override val isVararg: Boolean
            get() = withValidityAssertion { false }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:46 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

                else -> when (containingDeclaration) {
                    is PackageFragmentDescriptor -> KtSymbolKind.TOP_LEVEL
                    is ClassDescriptor -> KtSymbolKind.CLASS_MEMBER
                    else -> KtSymbolKind.LOCAL
                }
            }
        }
    
    internal val CallableMemberDescriptor.isExplicitOverride: Boolean
        get() {
            return (this !is PropertyAccessorDescriptor
    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)
  3. .space/CODEOWNERS

    /kotlin-native/klib/ "Kotlin Common Backend"
    /kotlin-native/tools/benchmarks "Kotlin Native" "Kotlin Performance QA"
    /kotlin-native/tools/benchmarksAnalyzer "Kotlin Native" "Kotlin Performance QA"
    /kotlin-native/tools/performance-server "Kotlin Native" "Kotlin Performance QA"
    /kotlin-native/performance "Kotlin Native" "Kotlin Performance QA"
    
    /libraries/examples/annotation-processor-example/ "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-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/references/Fe10IdeNormalAnalysisSourceModuleReferenceResolveTestGenerated.java

            runTest("analysis/analysis-api/testData/referenceResolve/forLoopIn/inBuiltIns/extension.kt");
          }
    
          @Test
          @TestMetadata("member.kt")
          public void testMember() {
            runTest("analysis/analysis-api/testData/referenceResolve/forLoopIn/inBuiltIns/member.kt");
          }
        }
    
        @Nested
        @TestMetadata("analysis/analysis-api/testData/referenceResolve/forLoopIn/inLibrary")
    Java
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Sat Apr 13 09:17:40 GMT 2024
    - 129.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

         * Returns the [KtSymbol]s called [fqName] found in the member scope and companion object's member scope of the [KtDeclaration]s that
         * contain the [contextElement].
         *
         * If [fqName] has two or more segments, e.g. `Foo.bar`, the member and companion object scope of the containing [KtDeclaration] will be
         * queried for a class `Foo` first, and then that class `Foo` will be queried for the member `bar` by short name.
         */
    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)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescFunctionSymbol.kt

                .orEmpty()
        }
    
        override val symbolKind: KtSymbolKind
            get() = withValidityAssertion {
                if (descriptor.isDynamic()) {
                    return@withValidityAssertion KtSymbolKind.CLASS_MEMBER
                }
                descriptor.ktSymbolKind
            }
    
        override val isSuspend: Boolean
            get() = withValidityAssertion { descriptor.isSuspend }
    
        override val isOperator: Boolean
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 17:23:15 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        private fun List<OverloadCandidate>.findScopeForSymbol(symbol: FirBasedSymbol<*>): FirScope? = firstOrNull {
            it.candidate.symbol == symbol
        }?.candidate?.originScope
    
        /**
         * Returns whether a member of companion is used to initialize the enum entry or not. For example,
         *     enum class C(val i: Int) {
         *         ONE(<expr>C.K</expr>)  // C.ONE uses C.K for initialization
         *         ;
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:51:33 GMT 2024
    - 69.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolContainingDeclarationProvider.kt

                else -> {
                    when (val containingDeclaration = descriptor.containingDeclaration) {
                        is DescriptorWithContainerSource -> {
                            // Deserialized member
                            return getFakeContainingKtModule(containingDeclaration)
                        }
                        is LazyJavaPackageFragment -> {
                            // Deserialized top-level
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Dec 21 15:34:34 GMT 2023
    - 9.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDataClassConverters.kt

                token,
            )
        }
        add(FirErrors.RESERVED_MEMBER_INSIDE_VALUE_CLASS) { firDiagnostic ->
            ReservedMemberInsideValueClassImpl(
                firDiagnostic.a,
                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
        add(FirErrors.RESERVED_MEMBER_FROM_INTERFACE_INSIDE_VALUE_CLASS) { firDiagnostic ->
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 208.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirClassInitializerSymbol.kt

            TODO("Figure out how to create such a pointer. Should we give an index to class initializers?")
        }
    
        override val symbolKind: KtSymbolKind get() = withValidityAssertion { KtSymbolKind.CLASS_MEMBER }
    
        override val typeParameters: List<KtTypeParameterSymbol> get() = withValidityAssertion { emptyList() }
        override val annotationsList: KtAnnotationsList get() = withValidityAssertion { KtEmptyAnnotationsList(token) }
    Plain Text
    - Registered: Fri Mar 22 08:18:09 GMT 2024
    - Last Modified: Fri Feb 03 14:29:54 GMT 2023
    - 2.2K bytes
    - Viewed (0)
Back to top