rspec/rules/S1192/cobol/rule.adoc

56 lines
1019 B
Plaintext

include::../description.adoc[]
== Noncompliant Code Example
With the default threshold of 3:
----
PROCEDURE DIVISION.
DISPLAY "Firstname: ".
*...
DISPLAY "Firstname: ".
*...
DISPLAY "Firstname: ".
----
== Compliant Solution
----
WORKING-STORAGE SECTION.
01 FIRST-NAME-HEADER PIC X(42) VALUE "Firstname: ".
PROCEDURE DIVISION.
DISPLAY FIRST-NAME-HEADER
*...
DISPLAY FIRST-NAME-HEADER
*...
DISPLAY FIRST-NAME-HEADER
----
== Exceptions
Literals with fewer than 7 characters are ignored.
Only duplications located in a ``++PROCEDURE DIVISION++``, not those contained in copybooks are reported.
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::../message.adoc[]
include::../parameters.adoc[]
include::../highlighting.adoc[]
'''
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::env-github,rspecator-view[]