rspec/rules/S2795/rpg/rule.adoc
Fred Tingaud 16f6c0aecf
Inline adoc when include has no additional value (#1940)
Inline adoc files when they are included exactly once.

Also fix language tags because this inlining gives us better information
on what language the code is written in.
2023-05-25 14:18:12 +02:00

44 lines
790 B
Plaintext

== Why is this an issue?
``++Eval++`` and ``++Callp++`` are the only two exceptions to the rule that each free-format line must start with an operation code. Since you can leave these two opcodes out, you should for cleaner, more readable code.
=== Noncompliant code example
[source,rpg]
----
Eval Regpay = hours * perHour;
Callp calcTax();
----
=== Compliant solution
[source,rpg]
----
Regpay = hours * perHour;
calcTax();
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
=== Message
"X" is optional here; leave it out.
'''
== Comments And Links
(visible only on this page)
=== on 2 Apr 2015, 18:00:30 Ann Campbell wrote:
http://www.bmeyers.net/faqs/14-tips/32-rpg-iv-style?start=1
endif::env-github,rspecator-view[]