mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 08:59:26 +02:00
* constant value is now supported as stored condition
This commit is contained in:
parent
26dbc1a7ba
commit
d8ade70c23
@ -43,6 +43,7 @@ unit typinfo;
|
||||
ptField = 0;
|
||||
ptStatic = 1;
|
||||
ptVirtual = 2;
|
||||
ptConst = 3;
|
||||
|
||||
const
|
||||
tkString = tkSString;
|
||||
@ -184,6 +185,11 @@ unit typinfo;
|
||||
caller.Address:=PPointer(PPointer(Instance.ClassType)+Longint(PropInfo^.StoredProc))^;
|
||||
IsStoredProc:=tbfunction(caller);
|
||||
end;
|
||||
4:
|
||||
begin
|
||||
IsStoredProp:=
|
||||
LongBool(PropInfo^.StoredProc);
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
|
||||
@ -191,7 +197,10 @@ end.
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.3 1998-09-07 08:32:59 florian
|
||||
Revision 1.4 1998-09-07 19:34:47 florian
|
||||
* constant value is now supported as stored condition
|
||||
|
||||
Revision 1.3 1998/09/07 08:32:59 florian
|
||||
+ procedure IsStoredProc added
|
||||
|
||||
Revision 1.2 1998/09/06 21:27:05 florian
|
||||
|
Loading…
Reference in New Issue
Block a user