mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 02:47:55 +02:00
* Inherit extended RTTI settings from parent object
This commit is contained in:
parent
8cfc87ffdf
commit
b0a82993e6
@ -1703,8 +1703,13 @@ implementation
|
|||||||
else
|
else
|
||||||
olddef:=nil;
|
olddef:=nil;
|
||||||
|
|
||||||
{ apply $RTTI directive to current object }
|
{ if set explicitly, apply $RTTI directive to current object }
|
||||||
current_structdef.apply_rtti_directive(current_module.rtti_directive);
|
if current_module.rtti_directive.clause<>rtc_none then
|
||||||
|
current_structdef.apply_rtti_directive(current_module.rtti_directive)
|
||||||
|
else
|
||||||
|
{ if not set, and class has a parent, take parent object settings }
|
||||||
|
if (objectType = odt_class) and assigned(current_objectdef.childof) then
|
||||||
|
current_structdef.apply_rtti_directive(current_objectdef.childof.rtti);
|
||||||
|
|
||||||
{ generate TObject VMT space }
|
{ generate TObject VMT space }
|
||||||
{ We must insert the VMT at the start for system.tobject, and class_tobject was already set.
|
{ We must insert the VMT at the start for system.tobject, and class_tobject was already set.
|
||||||
|
@ -41,13 +41,31 @@ type
|
|||||||
const
|
const
|
||||||
{$IFNDEF SMALLRTTI}
|
{$IFNDEF SMALLRTTI}
|
||||||
DefaultFieldRttiVisibility = [vcPrivate..vcPublished];
|
DefaultFieldRttiVisibility = [vcPrivate..vcPublished];
|
||||||
DefaultMethodRttiVisibility = [vcPublic..vcPublished];
|
DefaultMethodRttiVisibility = [vcPublic,vcPublished];
|
||||||
DefaultPropertyRttiVisibility = [vcPublic..vcPublished];
|
DefaultPropertyRttiVisibility = [vcPublic,vcPublished];
|
||||||
{$ELSE SMALLRTTI}
|
{$ELSE SMALLRTTI}
|
||||||
DefaultFieldRttiVisibility = [];
|
DefaultFieldRttiVisibility = [];
|
||||||
DefaultMethodRttiVisibility = [];
|
DefaultMethodRttiVisibility = [];
|
||||||
DefaultPropertyRttiVisibility = [];
|
DefaultPropertyRttiVisibility = [];
|
||||||
{$ENDIF SMALLRTTI}
|
{$ENDIF SMALLRTTI}
|
||||||
|
|
||||||
|
{ Default RTTI settings }
|
||||||
|
|
||||||
|
{$IFDEF FPC_HAS_FEATURE_RTTI}
|
||||||
|
{$IFDEF ENABLE_DELPHI_RTTI}
|
||||||
|
|
||||||
|
{$Message WARN 'Delphi RTTI enabled'}
|
||||||
|
|
||||||
|
{$RTTI INHERIT
|
||||||
|
METHODS(DefaultMethodRttiVisibility)
|
||||||
|
FIELDS(DefaultFieldRttiVisibility)
|
||||||
|
PROPERTIES(DefaultPropertyRttiVisibility)
|
||||||
|
}
|
||||||
|
|
||||||
|
{$ENDIF ENABLE_DELPHI_RTTI}
|
||||||
|
|
||||||
|
{$ENDIF FPC_HAS_FEATURE_RTTI}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{$POP}
|
{$POP}
|
||||||
@ -61,7 +79,7 @@ const
|
|||||||
tkWideString = tkWString;
|
tkWideString = tkWString;
|
||||||
tkUnicodeString = tkUString;
|
tkUnicodeString = tkUString;
|
||||||
|
|
||||||
{$ifdef FPC_HAS_FEATURE_RTTI}
|
{$IFDEF FPC_HAS_FEATURE_RTTI}
|
||||||
procedure InitializeArray(p, typeInfo: Pointer; count: SizeInt);
|
procedure InitializeArray(p, typeInfo: Pointer; count: SizeInt);
|
||||||
procedure FinalizeArray(p, typeInfo: Pointer; count: SizeInt);
|
procedure FinalizeArray(p, typeInfo: Pointer; count: SizeInt);
|
||||||
procedure CopyArray(dest, source, typeInfo: Pointer; count: SizeInt);
|
procedure CopyArray(dest, source, typeInfo: Pointer; count: SizeInt);
|
||||||
|
50
tests/test/texrtti16.pp
Normal file
50
tests/test/texrtti16.pp
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
{$MODE OBJFPC}
|
||||||
|
{$M+}
|
||||||
|
|
||||||
|
{
|
||||||
|
test that TMethodClassRTTI inherits RTTI settings of TBase
|
||||||
|
Note that the system unit must be compiled without extended RTTI generation TObject
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
program texrtti16;
|
||||||
|
|
||||||
|
uses typinfo, sysutils, uexrtti16, uexrttiutil;
|
||||||
|
|
||||||
|
Type
|
||||||
|
{ TMethodClassRTTI }
|
||||||
|
|
||||||
|
TMethodClassRTTI = Class (TBase)
|
||||||
|
Private
|
||||||
|
FY : Boolean;
|
||||||
|
public
|
||||||
|
Procedure PublicMethod;
|
||||||
|
Property Y : Boolean Read FY Write FY;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TMethodClassRTTI.PublicMethod;
|
||||||
|
begin
|
||||||
|
Writeln('hiero')
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TestClassMethods;
|
||||||
|
|
||||||
|
Var
|
||||||
|
A : PExtendedMethodInfoTable;
|
||||||
|
aCount : Integer;
|
||||||
|
AInstance : TMethodClassRTTI;
|
||||||
|
P: PPropListEx;
|
||||||
|
|
||||||
|
begin
|
||||||
|
aCount:=GetMethodList(TMethodClassRTTI,A,[]);
|
||||||
|
AssertEquals('Public method has extended RTTI',1,aCount);
|
||||||
|
CheckMethod('Full',0, A^[0],'PublicMethod',vcPublic);
|
||||||
|
aCount:=GetPropListEx(TMethodClassRTTI,P);
|
||||||
|
AssertEquals('Public property has RTTI',1,aCount);
|
||||||
|
CheckProperty(0, P^[0]^,'Y',tkBool,vcPublic,false);
|
||||||
|
end;
|
||||||
|
|
||||||
|
begin
|
||||||
|
TestClassMethods;
|
||||||
|
end.
|
||||||
|
|
18
tests/test/uexrtti16.pp
Normal file
18
tests/test/uexrtti16.pp
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
unit uexrtti16;
|
||||||
|
|
||||||
|
{$mode objfpc}
|
||||||
|
|
||||||
|
interface
|
||||||
|
|
||||||
|
Type
|
||||||
|
{$RTTI EXPLICIT
|
||||||
|
PROPERTIES([vcPublic])
|
||||||
|
FIELDS([vcPublic])
|
||||||
|
METHODS([vcPublic])}
|
||||||
|
|
||||||
|
TBase = Class(TObject)
|
||||||
|
end;
|
||||||
|
|
||||||
|
implementation
|
||||||
|
|
||||||
|
end.
|
Loading…
Reference in New Issue
Block a user