Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for break (0.17 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                else -> error("Unexpected ${element::class}")
            }
        }
    
        /**
         * Returns `true` if adding [classToImport] import to the [file] might alter or break the
         * resolve of existing references in the file.
         *
         * N.B.: At the moment it might have both false positives and false negatives, since it does not
         * check all possible references.
         */
    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)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/base/KtFe10PsiSymbolUtils.kt

                if (classDescriptor != null) {
                    return classDescriptor.scopeForMemberDeclarationResolution
                }
            }
            if (parent is KtFile) {
                break
            }
        }
    
        return null
    }
    
    
    internal fun KtFe10Symbol.createErrorType(): KtType {
        val type = ErrorUtils.createErrorType(ErrorTypeKind.UNAVAILABLE_TYPE_FOR_DECLARATION, psi.toString())
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Nov 11 10:59:55 GMT 2022
    - 5.5K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

            var parent = expression.parent as? KtDotQualifiedExpression
            var unresolvedCounter = 1
            while (parent != null) {
                val selectorExpression = parent.selectorExpression ?: break
                if (selectorExpression === expression) {
                    parent = parent.parent as? KtDotQualifiedExpression
                    continue
                }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Apr 15 10:59:01 GMT 2024
    - 37.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirDataFlowInfoProvider.kt

            while (current.isExitNode()) {
                val following = current.followingNodes
                if (following.size == 1) {
                    current = following.first()
                } else {
                    break
                }
            }
    
            return current
        }
    
        private fun CFGNode<*>.isExitNode(): Boolean {
            return when (this) {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Apr 16 06:40:43 GMT 2024
    - 22.9K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDataClassConverters.kt

        add(FirErrors.ASSIGNMENT_IN_EXPRESSION_CONTEXT) { firDiagnostic ->
            AssignmentInExpressionContextImpl(
                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
        add(FirErrors.BREAK_OR_CONTINUE_OUTSIDE_A_LOOP) { firDiagnostic ->
            BreakOrContinueOutsideALoopImpl(
                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 208.3K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSubstitutorProvider.kt

                    if (superClassSymbol == superSymbol) {
                        result = stack.toList()
                        check(stack.removeLast().second == superClassSymbol)
                        break
                    }
                    dfs(superClassSymbol)
                    check(stack.removeLast().second == superClassSymbol)
                }
            }
    
            dfs(baseSymbol)
            return result?.reversed()
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Oct 06 11:39:33 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  7. ChangeLog.md

    ### Tools. Kapt
    
    - [`KT-57389`](https://youtrack.jetbrains.com/issue/KT-57389) KAPT3 uses a Javac API for JCImport which will break in JDK 21
    - [`KT-60507`](https://youtrack.jetbrains.com/issue/KT-60507) Kapt: "IllegalAccessError: superclass access check failed" using java 21 toolchain
    
    ### Tools. Scripts
    
    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)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                    false
    
                // Object Literal expressions use none of its children.
                is KtObjectLiteralExpression ->
                    false
    
                // break, continue, super, this do not have children
                is KtBreakExpression ->
                    false
                is KtContinueExpression ->
                    false
                is KtSuperExpression ->
    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)
Back to top