Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Statement (0.17 sec)

  1. .idea/codeStyles/Project.xml

          <option name="BINARY_OPERATION_WRAP" value="5" />
          <option name="TERNARY_OPERATION_WRAP" value="5" />
          <option name="TERNARY_OPERATION_SIGNS_ON_NEXT_LINE" value="true" />
          <option name="FOR_STATEMENT_WRAP" value="5" />
          <option name="ARRAY_INITIALIZER_WRAP" value="1" />
          <option name="ASSIGNMENT_WRAP" value="1" />
          <option name="IF_BRACE_FORCE" value="1" />
          <option name="DOWHILE_BRACE_FORCE" value="1" />
    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)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10DataFlowInfoProvider.kt

    @OptIn(KtAnalysisNonPublicApi::class)
    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)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KtFirForLoopInReference.kt

            }
            val hasNext = condition?.calleeReference?.getResolvedSymbolOfNameReference()
            val next = (firLoop.block.statements.firstOrNull() as? FirProperty?)?.getInitializerFunctionCall()
            return listOfNotNull(
                iterator?.fir?.buildSymbol(firSymbolBuilder),
                hasNext?.fir?.buildSymbol(firSymbolBuilder),
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu May 05 08:43:13 GMT 2022
    - 2.1K bytes
    - Viewed (0)
  4. .idea/scopes/scope_settings.xml

    <component name="DependencyValidationManager">
      <state>
        <option name="SKIP_IMPORT_STATEMENTS" value="false" />
      </state>
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Fri Jun 24 11:11:28 GMT 2011
    - 139 bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KtFirPropertyDelegationMethodsReference.kt

                setValueSymbol?.fir?.buildSymbol(firSymbolBuilder)
            )
        }
    
        private inline fun <reified S : FirStatement> FirPropertyAccessor.singleStatementOfType(): S? =
            body?.statements?.singleOrNull() as? S
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Aug 22 11:20:19 GMT 2023
    - 2K bytes
    - Viewed (0)
  6. .idea/inspectionProfiles/idea_default.xml

            <option name="SUGGEST_NULLABLE_ANNOTATIONS" value="false" />
            <option name="DONT_REPORT_TRUE_ASSERT_STATEMENTS" value="false" />
          </scope>
          <option name="SUGGEST_NULLABLE_ANNOTATIONS" value="false" />
          <option name="DONT_REPORT_TRUE_ASSERT_STATEMENTS" value="false" />
        </inspection_tool>
        <inspection_tool class="ConstantIfStatement" enabled="true" level="WARNING" enabled_by_default="true">
    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)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                            createElementToShorten(qualifierElement, qualifierClassId.asSingleFqName(), importAllInParent)
                        }
                        // Otherwise, just shorten it and don't alter import statements
                        else -> createElementToShorten(qualifierElement)
                    }
                }
                importedClassifierOverwritesAvailableClassifier(availableClassifier, importAllInParent) -> {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:51:33 GMT 2024
    - 69.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

         * climbing up the syntax tree, passing control back and forth between the
         * two.
         *
         * Whether an expression is used is defined by the context in which it
         * appears. E.g. a "statement" in a block is considered used if it is the
         * last expression in that block AND the block itself is used -- a
         * recursive call to `isUsed`, one level higher in the syntax tree.
         *
    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. ChangeLog.md

    - [`KT-60518`](https://youtrack.jetbrains.com/issue/KT-60518) K2 IDE. False positive [NON_MEMBER_FUNCTION_NO_BODY] when completing function with `Complete current statement`
    - [`KT-60323`](https://youtrack.jetbrains.com/issue/KT-60323) K2 IDE. "KotlinExceptionWithAttachments: Unexpected returnTypeRef. Expected is FirResolvedTypeRef, but was FirImplicitTypeRefImpl" exception on contract return type
    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)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ExpressionTypeProvider.kt

                        return kotlinType?.toKtNonErrorType(analysisContext)
                    }
                }
    
                is KtBlockExpression -> {
                    if (expression == parentExpression.statements.lastOrNull()) {
                        val functionLiteral = parentExpression.parent as? KtFunctionLiteral
                        if (functionLiteral != null) {
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Tue Oct 24 20:59:56 GMT 2023
    - 15.5K bytes
    - Viewed (0)
Back to top