Simon Krajewski

Results 102 issues of Simon Krajewski

At the moment, every hxb module comes with its own string pool in the STR chunk. This is nice for having self-contained modules, but duplicates quite a bit of raw...

test-needed
feature-hxb

This has been discussed a lot in the past, so my apologies if I'm oversimplifying something here. Given that `null` is a thing, the most straightforward way I can think...

discussion

I really think that Vector should be implemented on top of fixed array types on all targets where this is possible. I'm attempting this here for HL, which seems to...

Reminder issue to also do for lastIndexOf what I did for indexOf in #11569. I can only deal with one of these per week.

Reminder issue that we still need to do this.

platform-jvm

I'm not 100% positive that all these conform to the spec, but I'd like to get an overview of where we're at. Related: #8367

I think we generally agree that we want to disallow `Void` for type parameters, but this by itself would be pointless if we still allowed `typedef NotVoid = Void`. This...

1. Open tests/optimization and compile it through the server. Observe that there are no failures. 2. Change any of the `@:js` and compile it through the server again. Observe that...

I labeled several issues during my latest iteration through the tests, and there already were quite a few. I know this isn't fun, but it has to be done...

Modified from https://github.com/HaxeFoundation/haxe/issues/11236#issuecomment-1926429085: ```haxe import java.util.concurrent.Executors; import java.util.concurrent.TimeUnit; import java.lang.Runnable; final exec = Executors.newSingleThreadScheduledExecutor(); function schedule(f:() -> Void) exec.schedule(f, 0, TimeUnit.MILLISECONDS); function greeter():Void { trace("hello"); exec.shutdown(); } function main() {...

test-needed