You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could you change PascalGenerator class to generate contructor & destructor names in a more object pascal way, ie first char capitalized (Create, Destroy). Now it all go lowercase.
Also, in base class, TObject destructor is defined as: procedure Destroy; virtual;
It means in override implementation you should call "inherited;" after specific class cleanup.
I just analyzed a bit generated code in FbApi.pas
The text was updated successfully, but these errors were encountered:
Hello Adriano,
Could you change PascalGenerator class to generate contructor & destructor names in a more object pascal way, ie first char capitalized (Create, Destroy). Now it all go lowercase.
Also, in base class, TObject destructor is defined as: procedure Destroy; virtual;
It means in override implementation you should call "inherited;" after specific class cleanup.
I just analyzed a bit generated code in FbApi.pas
The text was updated successfully, but these errors were encountered: