
When an include is not surrounded by empty lines, its content is inlined on the same line as the adjacent content. That can lead to broken tags and other display issues. This PR fixes all such includes and introduces a validation step that forbids introducing the same problem again.
45 lines
896 B
Plaintext
45 lines
896 B
Plaintext
== Why is this an issue?
|
|
|
|
``++Select Case++`` statements are useful when there are many different cases depending on the value of the same expression.
|
|
|
|
For just one or two cases however, the code will be more readable with ``++If++`` statements.
|
|
|
|
=== Noncompliant code example
|
|
|
|
[source,vb6]
|
|
----
|
|
Select Case number
|
|
Case 1 To 5
|
|
MsgBox("Between 1 and 5, inclusive")
|
|
Case Else
|
|
MsgBox("Not between 1 and 5, inclusive")
|
|
End Select
|
|
----
|
|
|
|
=== Compliant solution
|
|
|
|
[source,vb6]
|
|
----
|
|
If ( number >= 1 And number <= 5 ) then
|
|
MsgBox("Between 1 and 5, inclusive")
|
|
Else
|
|
MsgBox("Not between 1 and 5, inclusive")
|
|
End If
|
|
----
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
|
|
'''
|
|
== Implementation Specification
|
|
(visible only on this page)
|
|
|
|
include::../message.adoc[]
|
|
|
|
'''
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::../comments-and-links.adoc[]
|
|
|
|
endif::env-github,rspecator-view[]
|