23 lines
286 B
Plaintext
23 lines
286 B
Plaintext
![]() |
include::../description.adoc[]
|
||
|
|
||
|
== Noncompliant Code Example
|
||
|
|
||
|
----
|
||
|
foo(); bar() // Noncompliant
|
||
|
----
|
||
|
|
||
|
== Compliant Solution
|
||
|
|
||
|
----
|
||
|
foo()
|
||
|
bar()
|
||
|
----
|
||
|
|
||
|
== Exceptions
|
||
|
|
||
|
Control flow statements with a single nested statement are ignored.
|
||
|
|
||
|
----
|
||
|
if condition { doSomething() } // Compliant
|
||
|
----
|