rspec/rules/S1577/cobol/rule.adoc

33 lines
690 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
There should not be any statements after ``++EXIT PROGRAM++``. Such statements cannot be reached, and are therefore dead code. Dead code makes a program more complex and therefore more difficult to maintain.
2021-04-28 16:49:39 +02:00
== Noncompliant Code Example
----
PROCEDURE DIVISION.
PARAGRAPH1.
MOVE A TO B.
EXIT PROGRAM. >NOK as the following "MOVE B TO C" statement will never be called
MOVE B TO C.
----
2021-04-28 16:49:39 +02:00
== Compliant Solution
----
PROCEDURE DIVISION.
PARAGRAPH1.
MOVE A TO B.
EXIT PROGRAM.
----
ifdef::env-github,rspecator-view[]
'''
== Comments And Links
(visible only on this page)
include::comments-and-links.adoc[]
endif::env-github,rspecator-view[]