mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 07:48:59 +02:00
Validating the interface type in the virtual interface class.
This commit is contained in:
parent
5f5e39c1f6
commit
af3397e42c
@ -2210,16 +2210,21 @@ begin
|
||||
InterfaceMaps := TJSObject.New;
|
||||
FInterfaceType := FContext.GetType(PIID) as TRttiInterfaceType;
|
||||
|
||||
InterfaceInfo := FInterfaceType.InterfaceTypeInfo;
|
||||
|
||||
while Assigned(InterfaceInfo) do
|
||||
if Assigned(FInterfaceType) then
|
||||
begin
|
||||
InterfaceMaps[InterfaceInfo.InterfaceInfo.GUID] := GenerateNewMap(InterfaceInfo);
|
||||
InterfaceInfo := FInterfaceType.InterfaceTypeInfo;
|
||||
|
||||
InterfaceInfo := InterfaceInfo.Ancestor;
|
||||
end;
|
||||
while Assigned(InterfaceInfo) do
|
||||
begin
|
||||
InterfaceMaps[InterfaceInfo.InterfaceInfo.GUID] := GenerateNewMap(InterfaceInfo);
|
||||
|
||||
JSThis['$intfmaps'] := InterfaceMaps;
|
||||
InterfaceInfo := InterfaceInfo.Ancestor;
|
||||
end;
|
||||
|
||||
JSThis['$intfmaps'] := InterfaceMaps;
|
||||
end
|
||||
else
|
||||
raise EInvalidCast.Create;
|
||||
end;
|
||||
|
||||
constructor TVirtualInterface.Create(PIID: PTypeInfo; const InvokeEvent: TVirtualInterfaceInvokeEvent);
|
||||
|
Loading…
Reference in New Issue
Block a user