rspec/rules/S1763/kotlin/rule.adoc
2021-01-27 13:42:22 +01:00

23 lines
442 B
Plaintext

Jump statements (``++return++``, ``++break++`` and ``++continue++``) move control flow out of the current code block. So any statements that come after a jump are dead code.
== Noncompliant Code Example
----
fun foo(a: Int): Int {
var i = 10;
return a + i; // Noncompliant
i++; // dead code
}
----
== Compliant Solution
----
fun foo(a: Int): Int {
var i = 10;
return a + i;
}
----
include::../see.adoc[]