Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 76 for Schile (0.33 sec)

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

                        .sortedBy { it.id }
                }.distinct()
    
            return exitPoints.size > 1
        }
    
        private fun CFGNode<*>.unwrap(): CFGNode<*> {
            var current = this
    
            while (current.isExitNode()) {
                val following = current.followingNodes
                if (following.size == 1) {
                    current = following.first()
                } else {
                    break
                }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 14:04:46 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues/while.txt

    Dmitrii Gridin <******@****.***> 1716981664 +0200
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 389 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/loopLabelBreakUsed.kt

    fun test() {
    
        outer@while(true) {
            inner@while(false) {
                val x = <expr>break@outer</expr>
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 129 bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/doWhileExpr.txt

    expression: DO_WHILE
    text: do {
                4
        } while (b)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 88 bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/whileLoopBody.kt

    fun test() {
        var i = 0
        while (i < 100) {
            <expr>
            90
            </expr>
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 98 bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/whileLoopCondition.kt

    fun test() {
        var i = 0
        while (<expr>i < 100</expr>) {
            i++
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 81 bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/whileLoopConditionLHS.kt

    fun test() {
        var i = 0
        while (<expr>i</expr> < 100) {
            i++
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 81 bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/compilation/javaAnnotationWithVararg.ir.txt

            BLOCK_BODY
              CALL 'protected/*protected and package*/ open fun onCreate (): kotlin.Unit declared in p2.Parent' superQualifier='CLASS IR_EXTERNAL_JAVA_DECLARATION_STUB CLASS name:Parent modality:OPEN visibility:public superTypes:[kotlin.Any]' type=kotlin.Unit origin=null
                $this: GET_VAR '<this>: <root>.Child declared in <root>.Child.onCreate' type=<root>.Child origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 19:18:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/elvisWithContinue.kt

    fun test() {
        while(true) {
            val x = 45 ?: <expr>continue</expr>
            return
        }
    }
    
    // IGNORE_FE10
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 175 bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/breakContinue.kt

    fun test() {
        while (cond()) {
            <expr>if (foo() == 5) {
                break
            } else if (foo() == 6) {
                continue
            }</expr>
            consume("foo")
        }
    }
    
    fun cond(): Boolean = true
    
    fun foo(): Int = 0
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 266 bytes
    - Viewed (0)
Back to top