Aidan Lee
Aidan Lee
Trace works on `Dynamic`, so the object you're trying to trace needs to be convertable to `Dynamic`. `char[]` is not. However, `bool` is, so the c/c++ pointer to bool conversion...
What you could do is something like this. On the haxe side your externs would look like this, the abstract which only exposes standard haxe types is what the user...
The problem is that `char*` (what `char[]` decays to) is ambiguous. You seem to want a `char*` to `Dynamic` conversion to convert it to a string inbetween, and that might...
The workaround you posted involved more untyped though? > I do not know of a way to declare that sort of c type using only haxe That's because you probably...
Hello, I'd say this project is more paused for the moment, but I definitely want to get back to it. What happened was that several of the things I made...
A class given the `@:stackOnly` meta will cause a compilation failure if its used in a class field as that would place it on the heap, mainly useful for extern...
Do we want to fix typos in the sljit_src folder? That's just vendored sljit source like the other libs in the project/thirdparty folder.
Any chance of this happening for haxe 5? I've implemented most of the frontend program described in that haxec wiki page if that helps get the ball rolling. https://github.com/Aidan63/haxef So...
Seeing as one of the mac haxe test suite actions got stuck I've just downgraded it to use macos-13 (x86) to get it to run again and get a speed...
@Simn updated to master