Dementsprechend wäre für die Funktionen Folgendes sinnvoll:
Delphi-Quellcode:
Result := KlapptDas1;
Result := Result and KlapptDas2;
Result := Result and KlapptDas3;
Result := Result and KlapptDas4;
If Result then begin
... // jetzt kann es losgehen
Grade das ist doch prädistiniert für ein Exit;
Delphi-Quellcode:
if not KlapptDas1 then
Exit;
if not KlapptDas2 then
Exit;
if not KlapptDas3 then
Exit;
if not KlapptDas4 then
Exit;
... // jetzt kann es losgehen
Breakpoint auf alle Exit und du springst sofort auf den betreffenden Exit ohne mit F8 durch zappen zu müssen.
Immer wenn ich irgendwo beim Refactoring bin, versuche ich immer Vorabbedingunge in ein Exit hineinzuverfrachten.