I'd like to see this rule extended to work also for TYPES. Ideally we should unchain these just like constants, variables, methods, etc.
Before:
TYPES: BEGIN OF type1,
field1 TYPE data,
END OF type1,
type2 TYPE STANDARD TABLE OF type1.
BEGIN OF type3,
field3 TYPE data,
END OF type3.
type3 TYPE STANDARD TABLE OF type3,
After:
TYPES:
BEGIN OF type1,
field1 TYPE data,
END OF type1.
TYPES type2 TYPE STANDARD TABLE OF type1.
TYPES:
BEGIN OF type3,
field3 TYPE data,
END OF type3.
TYPES type3 TYPE STANDARD TABLE OF type3.
I'd like to see this rule extended to work also for TYPES. Ideally we should unchain these just like constants, variables, methods, etc.
Before:
After: