Skip to content

Commit cd62191

Browse files
Update maximum-nesting-depth.md
1 parent 33d4eae commit cd62191

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

docs/checks/maximum-nesting-depth.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,18 @@ The pseudo comment must be placed right after the `ENDMETHOD` statement.
2929

3030
```abap
3131
METHOD method_name.
32-
" Method content
32+
...
33+
IF any_condition.
34+
IF any_condition.
35+
IF any_condition.
36+
IF any_condition.
37+
IF any_condition.
38+
any_condition = abap_true.
39+
ENDIF.
40+
ENDIF.
41+
ENDIF.
42+
ENDIF.
43+
ENDIF.
3344
ENDMETHOD. "#EC CI_NESTING
3445
```
3546

0 commit comments

Comments
 (0)