Nicolas Cannasse

Results 285 comments of Nicolas Cannasse

Even the bigger companies happen to be reported as false positive, hence the code signing (and it's not very expensive)

@Simn atm not auto-typing things as `Null` allows us to detect and warn on static platforms `null cannot be used as a basic type` and requires explicit `Null` typing. Also,...

Hi, Looks fine, the only issue I have is that the windows specific implementation (in particular the 2048 buffer size) is visible in the Haxe code (idx < 2048). If...

The final hl_copy_bytes value seems incorrect. maybe should be sizeof(outputFile) ?

Yes we don't optimize string concat in order to limit the number of strings in the string pool on some targets. We could optimize for JS.

Reproduces with: ```haxe class Main { static function main() { sdl.Sdl.init(); var win = new sdl.Window("test",800,600); while( sdl.Sdl.processEvents(function(e) return true) ) { } } } ``` According to commandline debugger,...

They should. But it seems in the VSCode case, the error is caught by Stage.__handleError and then rethrow. If there's a try/catch, not sure why it's not caught in commandline...

Ah, maybe it's indeed caught & rethrow, but in the VSCode case the stack "up" from rethrow is not displayed. Uhm... I have to try reproducing this. Do you have...

Ok, it seems that indeed hl.Api.rethrow does not gives full stack trace in the debugger. Some when you said "commandline" you meant running hl in the commandline, not when using...

It can easily be reproduced by running this in debugger: ```haxe class Main { static function foo( x : Int ) : Int { if( x < 0 ) throw...