flashultra

Results 59 comments of flashultra

@joshtynjala Is there any chance this pull request to be merged in the next release ? For the tests I did everything worked great .

Obviously it's a memory access violation ( loading the above file `1573330423001.hxt` will give the same error). Here is the full log ( from event logger) ```Faulting application name: hxScout.exe,...

@jcward sorry to disturb you , but do you have any idea where can be the problem and how can I fix it ? Thank you.

I start to collect data ( on Windows) and open the .hxt file on Linux, but there is not any info . Here is screenshoot ( all tabs are empty-...

According to [github actions](https://github.com/HaxeFoundation/haxe/actions/runs/4131866863/jobs/7139961425#step:10:2360) , cpp failed on this test: ```haxe var n:haxe.Int32 = 1; var m:haxe.Int32 = n

Generated JS code : ```js let i_high = -253493477; let mcr_low = i_high >>> 0; let pcrm_low = 800720370 >>> 0; let low = mcr_low + pcrm_low | 0; ```...

There was discussion about BigInteger and RSA here : https://github.com/HaxeFoundation/crypto/issues/2 As you can see, the last suggestion was to be a separate library. Also Nicolas mention here ( https://github.com/HaxeFoundation/haxe/issues/7535 )...

In practical is very rarely to use Int above 2147483647, so to not loose performance the current behaviour could be kept i.e. default Int (according to the target) and if...

Maybe a naive approach, but what if we set default values for all variables after the first optional argument? ٍSomething like this ( in C#): ```C# public virtual void foo(int...