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:
Henrique Gottardi Werlang 2025-02-28 20:50:40 +00:00
commit 467252d6bd

View File

@ -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);