40 lines
382 B
Plaintext
40 lines
382 B
Plaintext
![]() |
include::../description.adoc[]
|
||
|
|
||
|
== Noncompliant Code Example
|
||
|
|
||
|
----
|
||
|
func foo(x,y int) {
|
||
|
switch x {
|
||
|
case 0:
|
||
|
switch y { // Noncompliant; nested switch
|
||
|
// ...
|
||
|
}
|
||
|
case 1:
|
||
|
// ...
|
||
|
default:
|
||
|
// ...
|
||
|
}
|
||
|
}
|
||
|
----
|
||
|
|
||
|
== Compliant Solution
|
||
|
|
||
|
----
|
||
|
func foo(x,y int) {
|
||
|
switch x {
|
||
|
case 0:
|
||
|
bar(y)
|
||
|
case 1:
|
||
|
// ...
|
||
|
default:
|
||
|
// ...
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func bar(y int) {
|
||
|
switch y {
|
||
|
// ...
|
||
|
}
|
||
|
}
|
||
|
----
|