Bei Verwendung von etwas umfangreicheren Generics stürzt das Tool schlicht ab bzw. hängt mit voller Prozessorkernauslastung.
Dort kommen Konstrukte wie dieses vor (ob es daran liegt weiß ich nicht):
Delphi-Quellcode:
class procedure RegisterStatusData<T, I: ICustomDataEntry; C: class, constructor, ICustomDataEntry; K: ICustomDataList<T>>;
...
class procedure TApplicationInterface.RegisterStatusData<T, I, C, K>;
begin
RegisterInterfaceProvider<T>(
function...
...
Die
Unit kann ich leider nicht veröffentlichen, da sie Firmeneigentum ist.
// EDIT:
Jetzt bin ich etwas erstaunt. Die Ursache ist ein eigentlich absolut simpler Codeteil. Interessanterweise klappt es sobald ich eine der drei Propertys entferne. Der Code dürfte doch keinen Parser vor irgendwelche Probleme stellen...
Delphi-Quellcode:
unit Common.Core.ApplicationInterface;
interface
type
TApplicationInterface =
class
public
class property InterfaceProvider: IInterfaceProvider
read GetInterfaceProvider;
class property DummyProvider: IInterfaceProvider
read GetDummyProvider;
class property CurrentProvider: IInterfaceProvider
read GetCurrentProvider;
end;
implementation
end;
(Es ist egal, ob die Methodendeklarationen und -rümpfe dabei sind oder nicht.)