mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 05:27:47 +02:00
Merge branch 'FixForRTTI' into 'main'
When make a TValue from a class now the type info of the value will be the same of the class. See merge request freepascal.org/fpc/pas2js!88
This commit is contained in:
commit
467252d6bd
@ -1002,6 +1002,9 @@ begin
|
||||
end
|
||||
else
|
||||
Result.FData := ABuffer;
|
||||
|
||||
if (Result.FTypeInfo.Kind = tkClass) and Result.IsClass and not Result.IsEmpty then
|
||||
Result.FTypeInfo := Result.AsObject.ClassInfo;
|
||||
end;
|
||||
|
||||
generic class procedure TValue.Make<T>(const Value: T; var Result: TValue);
|
||||
|
Loading…
Reference in New Issue
Block a user