Ravil

Results 28 comments of Ravil

Yes I see, different strings implementation on FPC and Delphi can cause a lot of pain. All right no problem, I don't think it's worth the time. BTW I placed...

:) didnt know that. So here are the issues: Delphi 11.3, 1) dwsRTTIExposer.pas (805) tkEnumeration : if asType.Handle=TypeInfo(Boolean) then info.Value:=value.AsBoolean else info.Value:=value.AsInt64; AsInt64here causes error, if you replace it with...

1) Looks like the first problem is related to properties. Delphi code: ``` type TSomeClass //class to be exposed ..... private FTestEnum: TSomeEnumeration; published property TestEnum: TSomeEnumeration read FTestEnum write...

thanks I will try to reproduce the issue on your test case and let you know

Yes I found why you didn't get the error. 1) I tried to compile your test but failed to find TestUtils.pas, so I copied your code to my test unit...

Hi Eric, I found some weird issue when exposing arrays. When you pass such property to another exposed method the script runs extremely slow and speed falls down exponentially with...

I managed to work around using variant properties instead of arrays. It works now fast on Windows. But on Linux I have got another problem - all array parameters of...

Eric, I have made a test project, so this one can be closed