20 lines
246 B
Plaintext
20 lines
246 B
Plaintext
include::../description.adoc[]
|
|
|
|
== Noncompliant Code Example
|
|
|
|
With default provided regular expression ``++^([A-Z0-9_]*|[a-z0-9_]*)$++``:
|
|
|
|
----
|
|
METHOD MyMethod
|
|
...
|
|
ENDMETHOD.
|
|
----
|
|
|
|
== Compliant Solution
|
|
|
|
----
|
|
METHOD MY_METHOD
|
|
...
|
|
ENDMETHOD.
|
|
----
|