reflaxe.CPP icon indicating copy to clipboard operation
reflaxe.CPP copied to clipboard

An alternative C++ target for Haxe that generates dependent-less, GC-less C++17 code.

Results 26 reflaxe.CPP issues
Sort by recently updated
recently updated
newest added

This is a much nicer and more refined version of the previous implementation. I also made custom metadata called `@:cppcList`, which handles constant and local variables in an initializer list...

`haxe.ds.Option` does't work since enums with type parameters dont work oh god why

This is generated when compiling `haxe.ds.Vector`: ```cpp this1->size() = (uint32_t)(10); ``` ```haxe package; function main() { var vec = new haxe.ds.Vector(10); for (i in 0...vec.length) { vec[i] = i; }...

This gets converted to infinite `while(true)` loop. Need to add support for non-null safe code!! https://github.com/HaxeFoundation/haxe/blob/760c0dd9972abadceba4e72edb1db13b2a4fb315/std/haxe/ds/List.hx#L182

Compiler Configuration: MSVC 2022, Windows, 64 bit, Release Build This was a great project to just integrate one of my existing Haxe libraries in one of my C++ projects since...

Please support Haxe default example on haxe.org haxe:4.3.1 reflaxe:nightly ```haxe class Game { // Haxe applications have a static entry point called main static function main() { // Anonymous structures....

I have a class Main.hx that refrences CivetC.hx (Main.cpp and CivetC.cpp) When building with the provided batch file in the sample project, CL complaints about the CivetC static functions. When...

Reflaxe does not honour the @:keep meta which says > If used on a class, the class along with all fields is unaffected by DCE. If used on a field,...

In My use casse, I passed a int literal to Std.string, which accepts type dynamic, and later passed as std.String to extern function where the param was used in cout,...

I decided to try reflaxe and I received a lot of errors. So I tried to keep things simple, and downloaded the test project from the repo. same. Tried with...