haxe
haxe copied to clipboard
Haxe - The Cross-Platform Toolkit
This implements what I'm talking about in #11510. When using `--hxb`, a top-level `StringPool.hxb` is generated, which is then read once and passed to all hxb readers. For now, this...
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...
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...
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...
```haxe function main() { var p:NullString> = () -> "ok"; trace(p?.bind()()); } ``` https://try.haxe.org/#070F275b Looking at the generated js you can see that no null check gets inserted for a...
Reminder issue to also do for lastIndexOf what I did for indexOf in #11569. I can only deal with one of these per week.
The json resulting from pretty printing a float value that is exactly an integer doesn't include any period. As a result, when parsing the json again, the same value is...
Based on #8495
Add test for Int/Int32 shift left operations with overflow