Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for fe (0.15 sec)

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

            originalFile: KtFile,
            nameExpression: KtSimpleNameExpression,
            explicitReceiver: KtExpression?
        ): KtCompletionExtensionCandidateChecker {
            throw NotImplementedError("Method is not implemented for FE 1.0")
        }
    
        @Suppress("OVERRIDE_DEPRECATION")
        override fun checkExtensionFitsCandidate(
            firSymbolForCandidate: KtCallableSymbol,
            originalFile: KtFile,
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Fri Feb 02 15:38:10 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10KlibSourceFileNameProvider.kt

    ) : KtKlibSourceFileNameProvider() {
        override fun getKlibSourceFileName(declaration: KtDeclarationSymbol): String? {
            throw NotImplementedError("Method is not implemented for FE 1.0")
        }
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Mon Mar 18 10:13:57 GMT 2024
    - 893 bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10DataFlowInfoProvider.kt

        override fun getExitPointSnapshot(statements: List<KtExpression>): KtDataFlowExitPointSnapshot {
            throw NotImplementedError("Method is not implemented for FE 1.0")
        }
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Thu Mar 14 10:53:11 GMT 2024
    - 940 bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolDeclarationOverridesProvider.kt

        }
    
        override fun getIntersectionOverriddenSymbols(symbol: KtCallableSymbol): Collection<KtCallableSymbol> {
            throw NotImplementedError("Method is not implemented for FE 1.0")
        }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Mar 13 16:31:41 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10OverrideInfoProvider.kt

        override fun getImplementationStatus(
            memberSymbol: KtCallableSymbol,
            parentClassSymbol: KtClassOrObjectSymbol
        ): ImplementationStatus?  {
            throw NotImplementedError("Method is not implemented for FE 1.0")
        }
    
        override fun unwrapFakeOverrides(symbol: KtCallableSymbol): KtCallableSymbol {
            val callableDescriptor = getSymbolDescriptor(symbol) as? CallableMemberDescriptor ?: return symbol
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Wed Nov 30 19:49:14 GMT 2022
    - 3.3K bytes
    - Viewed (0)
  6. ChangeLog.md

    - [`KT-55840`](https://youtrack.jetbrains.com/issue/KT-55840) Inconsistency between members of enums in bytecode between FE 1.0 + JVM IR and FIR + JVM IR
    - [`KT-47815`](https://youtrack.jetbrains.com/issue/KT-47815) JVM: "Recursion detected in a lazy value under LockBasedStorageManager" when trying to inherit interface from a class with non-trivial function
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Thu Dec 21 17:48:12 GMT 2023
    - 268.7K bytes
    - Viewed (1)
Back to top