Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for thrown (0.22 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10JvmTypeMapperContext.kt

        companion object {
            fun getNestedType(type: KotlinType): NestedType {
                val possiblyInnerType = type.buildPossiblyInnerType() ?: throw IllegalArgumentException(type.toString())
                val innerTypesAsList = possiblyInnerType.segments()
                val indexOfParameterizedType = innerTypesAsList.indexOfFirst { innerPart -> innerPart.arguments.isNotEmpty() }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Mar 10 11:03:45 GMT 2023
    - 8.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10KlibSourceFileNameProvider.kt

    internal class KtFe10KlibSourceFileNameProvider(
        override val analysisSession: KtAnalysisSession,
    ) : 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

    internal class KtFe10DataFlowInfoProvider(override val analysisSession: KtAnalysisSession) : KtDataFlowInfoProvider() {
        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/KtFe10CompilerFacility.kt

            configuration: CompilerConfiguration,
            target: KtCompilerTarget,
            allowedErrorFilter: (KtDiagnostic) -> Boolean
        ): KtCompilationResult {
            if (file is KtCodeFragment) {
                throw UnsupportedOperationException("Code fragments are not supported in K1 implementation")
            }
    
            val classBuilderFactory = when (target) {
                is KtCompilerTarget.Jvm -> target.classBuilderFactory
            }
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Fri Dec 01 13:22:55 GMT 2023
    - 9.6K bytes
    - Viewed (0)
  5. .idea/inspectionProfiles/idea_default.xml

            </option>
            <option name="METHOD_OPTIONS">
              <value>
                <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" />
                <option name="REQUIRED_TAGS" value="@return@param@throws or @exception" />
              </value>
            </option>
            <option name="FIELD_OPTIONS">
              <value>
                <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" />
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Thu Nov 09 20:59:03 GMT 2023
    - 32.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiDestructuringDeclarationSymbol.kt

            }
    
        override fun createPointer(): KtSymbolPointer<KtDestructuringDeclarationSymbol> {
            KtPsiBasedSymbolPointer.createForSymbolFromSource<KtDestructuringDeclarationSymbol>(this)?.let { return it }
            throw CanNotCreateSymbolPointerForLocalLibraryDeclarationException(SpecialNames.DESTRUCT.asString())
        }
    
        override fun equals(other: Any?): Boolean {
            if (this === other) return true
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:46 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  7. 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 {
    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)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                // when is an `else`.
                is KtWhenExpression ->
                    parent.subjectExpression == child && parent.entries.firstOrNull()?.isElse == false
    
                // Throw expressions use the expression thrown.
                is KtThrowExpression ->
                    parent.thrownExpression == child
    
                // Body and catch blocks of try-catch expressions are used if the try-catch itself
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Feb 12 20:38:23 GMT 2024
    - 17.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompletionCandidateChecker.kt

        override fun createExtensionCandidateChecker(
            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,
    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)
  10. .idea/codeStyles/Project.xml

          <option name="METHOD_PARAMETERS_RPAREN_ON_NEXT_LINE" value="true" />
          <option name="EXTENDS_LIST_WRAP" value="1" />
          <option name="THROWS_LIST_WRAP" value="5" />
          <option name="EXTENDS_KEYWORD_WRAP" value="1" />
          <option name="THROWS_KEYWORD_WRAP" value="1" />
          <option name="METHOD_CALL_CHAIN_WRAP" value="1" />
          <option name="BINARY_OPERATION_WRAP" value="5" />
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Tue May 02 13:36:56 GMT 2023
    - 4.1K bytes
    - Viewed (3)
Back to top