tobil4sk

Results 167 issues of tobil4sk

This fixes #9990, which crashes due to a missing `TODATAARRAY` instruction, which is required to convert the resulting dynamic array back into an int array. Before: ``` 3 30 CALLSUPER...

In Haxe 4.2.5, if the hxml contained `--next`, completion worked normally and it just used the first build found in the hxml. However, with 4.3.0 development builds since 7ebd72bbe61648193d436106f70ae1a298f82b3c, completion/hovering...

test-needed

The majority of macros in `hl.h` already follow this rule, however, there are a few that don't, in particular type names for ffi: https://github.com/HaxeFoundation/hashlink/blob/fbfedd8097d3a2c4869154251f4a160d13a23ac3/src/hl.h#L824-L848 In C, identifiers beginning with an...

This enables an alternate solution for these bugs: https://github.com/HaxeFoundation/haxe/issues/12374 https://github.com/HaxeFoundation/haxe/issues/12376 With this PR, haxe is able to mark methods as overrides so that they don't add an additional slot to...

This test wasn't running because it is only enabled for haxe >= 4.3.7 and we were on haxe 4.3.4, and also it wasn't running properly because HostExtendedRoot was not part...

`array[0]` had a side effect of extending an empty array to size 1. Now, the pointer is retrieved directly without the [] access which prevents the array being extended. Fixes...

d119a07ef9e41b938fb4aebb3e6469c22c1e536f fixed an issue with incorrect handling of `length < 0`, however, it also introduced an unnecessary additional loop to get the length of the string, separate from the conversion/copy...

When using the mac toolchain to compile .mm files, `HXCPP_CPP11` is ignored by hxcpp, so no `-std=c++11` flag is added to the build. Since there is already a lot of...

The check on line 134 would never work properly on windows, because the line had a CR character so FileSystem.exists returned false. This meant that if a library was resolved...

This adds a `Makefile` to the root of the repo. As well as building and installing a neko binary of haxelib, it also allows installing haxelib as an `sh` script...