mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 18:17:45 +02:00
Validating the interface type in the virtual interface class.
This commit is contained in:
parent
5f5e39c1f6
commit
af3397e42c
@ -2210,6 +2210,8 @@ begin
|
||||
InterfaceMaps := TJSObject.New;
|
||||
FInterfaceType := FContext.GetType(PIID) as TRttiInterfaceType;
|
||||
|
||||
if Assigned(FInterfaceType) then
|
||||
begin
|
||||
InterfaceInfo := FInterfaceType.InterfaceTypeInfo;
|
||||
|
||||
while Assigned(InterfaceInfo) do
|
||||
@ -2220,6 +2222,9 @@ begin
|
||||
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