Is your feature request related to a problem? Please describe.
I'd like to have rules for next statements similar to those available for return statements, e.g. enforcing indentation and case.
For example, to fix
my_loop : loop
label_next : NEXT my_loop WHEN condition;
end loop;
to
my_loop : loop
label_next : next my_loop when condition;
end loop;
Is your feature request related to a problem? Please describe. I'd like to have rules for
next
statements similar to those available forreturn
statements, e.g. enforcing indentation and case. For example, to fixto