Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for NotImplementedError (2.24 sec)

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

    internal class KaFe10DataFlowInfoProvider(override val analysisSession: KaSession) : KaDataFlowInfoProvider() {
        override fun getExitPointSnapshot(statements: List<KtExpression>): KaDataFlowExitPointSnapshot {
            throw NotImplementedError("Method is not implemented for FE 1.0")
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 924 bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompletionCandidateChecker.kt

            originalFile: KtFile,
            nameExpression: KtSimpleNameExpression,
            explicitReceiver: KtExpression?
        ): KaCompletionExtensionCandidateChecker {
            throw NotImplementedError("Method is not implemented for FE 1.0")
        }
    
        @Suppress("OVERRIDE_DEPRECATION")
        override fun checkExtensionFitsCandidate(
            firSymbolForCandidate: KaCallableSymbol,
            originalFile: KtFile,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10OverrideInfoProvider.kt

        }
    
        override fun getImplementationStatus(
            memberSymbol: KaCallableSymbol,
            parentClassSymbol: KaClassOrObjectSymbol
        ): ImplementationStatus?  {
            throw NotImplementedError("Method is not implemented for FE 1.0")
        }
    
        override fun unwrapFakeOverrides(symbol: KaCallableSymbol): KaCallableSymbol {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10KlibSourceFileNameProvider.kt

    internal class KaFe10KlibSourceFileNameProvider(
        override val analysisSession: KaSession,
    ) : KaKlibSourceFileNameProvider() {
        override fun getKlibSourceFileName(declaration: KaDeclarationSymbol): String? {
            throw NotImplementedError("Method is not implemented for FE 1.0")
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 877 bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolDeclarationOverridesProvider.kt

            return subClassDescriptor.getSuperClassOrAny() == superClassDescriptor
        }
    
        override fun getIntersectionOverriddenSymbols(symbol: KaCallableSymbol): Collection<KaCallableSymbol> {
            throw NotImplementedError("Method is not implemented for FE 1.0")
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. ChangeLog.md

    - [`KT-65551`](https://youtrack.jetbrains.com/issue/KT-65551) K2: Property redeclaration on native compilation leads to NotImplementedError
    - [`KT-65770`](https://youtrack.jetbrains.com/issue/KT-65770) K2: Diagnostic rendering of `vararg Foo` parameter produces `vararg Array<Foo>`
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top