Re: [fpc-devel] Compile time functions

2018-07-29 Thread J. Gareth Moreton
Thanks everyone! I'm still learning some parts of Pascal!  I'll see if I can accommodate for that. Gareth aka. Kit On Sun 29/07/18 08:14 , Sven Barth via fpc-devel fpc-devel@lists.freepascal.org sent: Thorsten Engler schrieb am So., 29. Juli 2018, 04:40: type   TMyClass = class of TMyObje

Re: [fpc-devel] Compile time functions

2018-07-29 Thread Sven Barth via fpc-devel
Thorsten Engler schrieb am So., 29. Juli 2018, 04:40: > type > > TMyClass = class of TMyObject; > > TMyObject = class > > procedure InstanceMethod; //Self = TMyObject, can be virtual > > class procedure ClassMethod; //Self = TMyClass, can be virtual > > class procedure StaticClass