Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getMethod (0.21 sec)

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

            get() = withValidityAssertion { KtFe10DescFunctionSymbol.build(descriptor.getMethod, analysisContext) }
    
        override val javaSetterSymbol: KtFunctionSymbol?
            get() = withValidityAssertion {
                val setMethod = descriptor.setMethod ?: return null
                return KtFe10DescFunctionSymbol.build(setMethod, analysisContext)
            }
    
        override val hasSetter: Boolean
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:46 GMT 2024
    - 4.7K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

                return getMethod.callableIdIfNotLocal
            }
    
            return null
        }
    
    internal val PropertyDescriptor.setterCallableIdIfNotLocal: CallableId?
        get() {
            if (this is SyntheticPropertyDescriptor) {
                val setMethod = this.setMethod
                if (setMethod != null) {
                    return setMethod.callableIdIfNotLocal
                }
            }
    
    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. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolInfoProvider.kt

            val descriptor = getSymbolDescriptor(symbol) as? PropertyDescriptor
            if (descriptor is SyntheticJavaPropertyDescriptor) {
                return descriptor.getMethod.name
            }
    
            if (descriptor != null) {
                if (descriptor.hasJvmFieldAnnotation()) return descriptor.name
    
                val getter = descriptor.getter ?: return SpecialNames.NO_NAME_PROVIDED
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Jun 08 13:34:50 GMT 2023
    - 7.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescSyntheticJavaPropertySymbolForOverride.kt

        override val javaSetterSymbol: KtFunctionSymbol?
            get() = withValidityAssertion {
                val setMethod = descriptor.setterMethod ?: return null
                return KtFe10DescFunctionSymbol.build(setMethod, analysisContext)
            }
    
        override val hasSetter: Boolean
            get() = withValidityAssertion { descriptor.setter != null }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:46 GMT 2024
    - 4.8K bytes
    - Viewed (0)
Back to top