2020-06-30 12:48:07 +02:00
|
|
|
include::../description.adoc[]
|
|
|
|
|
|
|
|
== Noncompliant Code Example
|
|
|
|
|
|
|
|
----
|
|
|
|
if a == b { // Compliant; a reassigned in previous block
|
|
|
|
doSomething(b)
|
|
|
|
}
|
|
|
|
if a == b { // Noncompliant; is this really what was intended?
|
|
|
|
doTheThing(c)
|
|
|
|
}
|
|
|
|
----
|
|
|
|
|
|
|
|
== Compliant Solution
|
|
|
|
|
|
|
|
----
|
|
|
|
if a == b {
|
|
|
|
doTheThing(b)
|
|
|
|
doTheThing(c)
|
|
|
|
}
|
|
|
|
----
|
|
|
|
or
|
2020-06-30 14:49:38 +02:00
|
|
|
|
2020-06-30 12:48:07 +02:00
|
|
|
----
|
|
|
|
if a == b {
|
|
|
|
doTheThing(b)
|
|
|
|
}
|
|
|
|
if b == c {
|
|
|
|
doTheThing(c)
|
|
|
|
}
|
|
|
|
----
|
|
|
|
|
|
|
|
include::../exceptions.adoc[]
|