Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for callableName (0.17 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/firAnnotationUtils.kt

                expression = KaArrayAnnotationValue(
                    values = rawValues.map {
                        KaEnumEntryAnnotationValue(
                            callableId = CallableId(classId = expectedEnumClassId, callableName = Name.identifier(it)),
                            sourcePsi = null,
                            token
                        )
                    },
                    sourcePsi = null,
                    token
                ),
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

            }
        }
    
        private val CallableId.isStringEquals: Boolean
            get() = classId == StandardClassIds.String && callableName.identifierOrNullIfSpecial == "equals"
    
        private val CallableId.isStringPlus: Boolean
            get() = classId == StandardClassIds.String && callableName.identifierOrNullIfSpecial == "plus"
    
        ////// KINDS
    
        private fun ConeKotlinType.toConstantValueKind(): ConstantValueKind? =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirSamConstructorSymbol.kt

            val callableId = firSymbol.callableId
            return KaFirSamConstructorSymbolPointer(ClassId(callableId.packageName, callableId.callableName))
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

    internal fun CallableMemberDescriptor.calculateCallableId(allowLocal: Boolean): CallableId? {
        if (this is SyntheticJavaPropertyDescriptor) {
            return getMethod.calculateCallableId(allowLocal)?.copy(callableName = name)
        }
        var current: DeclarationDescriptor = containingDeclaration
    
        val localName = mutableListOf<String>()
        val className = mutableListOf<String>()
    
        while (true) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top