rspec/rules/S3923/cobol/rule.adoc

56 lines
1.1 KiB
Plaintext
Raw Normal View History

== Why is this an issue?
Having all branches of an `EVALUATE` or `IF` chain with the same implementation indicates a problem.
2020-06-30 12:48:39 +02:00
In the following code:
2020-06-30 12:48:39 +02:00
2022-02-04 17:28:24 +01:00
[source,cobol]
2020-06-30 12:48:39 +02:00
----
EVALUATE X *> Noncompliant
WHEN 1
PERFORM SECTION1
WHEN OTHER
PERFORM SECTION1
END-EVALUATE.
IF X = 1 THEN *> Noncompliant
PERFORM SECTION1
ELSE
PERFORM SECTION1
END-IF.
----
Either there is a copy-paste error that needs fixing or an unnecessary `EVALUATE` or `IF` chain that needs removing.
=== Exceptions
2020-06-30 12:48:39 +02:00
This rule does not apply to `IF` chains without `ELSE`, nor to `EVALUATE` without a `WHEN OTHER` clause.
2020-06-30 12:48:39 +02:00
2021-02-02 15:02:10 +01:00
[source,cobol]
2020-06-30 12:48:39 +02:00
----
IF X = 1 THEN *> //no issue, this could have been done on purpose to make the code more readable
PERFORM SECTION1
ELSE-IF X = 2 THEN
PERFORM SECTION1
END-IF.
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::../message.adoc[]
include::../highlighting.adoc[]
'''
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::env-github,rspecator-view[]