Maybee Rezbit

Results 60 comments of Maybee Rezbit

I'll add support for the `Date` class once I have more free time to work on this! There's no `Time` class afaik?

Hello! Please feel free to keep this open, this is something I hope to fix eventually. The issue is actually a bit complicated. The reason it generates that way is...

Sorry for the delay, I think this might be a thing with Haxe. While I could fix, that would make it less consistent with the Haxe static targets. For example,...

This is a real tough one, it's been keeping me up for weeks. I know I have a bad track record when it comes to saying things are "impossible", but...

Yes! It's done with `std::enable_shared_from_this`. In the example above, you could do: ```haxe var r: cxx.SharedPtr = this; ``` Which will generate this: ```cpp class FooBuilder: public std::enable_shared_from_this { public:...

Oooh, nice catch!! I like your solutions too! Wasn't aware of those functions and will definitely use those!! I was initially thinking to just generate a lambda. But that'd look...

Ooof, yeah, I forgot about pointer stacking. As always, thanks for the report! I think for this, I might be able to add a secondary, optional parameter as well, something...

Sorry for the delay, you can disable the default file generation by returning `null` from the Generator functions. Before returning `null`, use the "extra file" functions from `BaseCompiler` to manually...

Yeahhh, reflaxe/C++ has its own custom DCE system (kind of like the JS target), but I completely forgot to account for `@:keep`. Good find!! ^^

`@:keep` should be fixed if you update Reflaxe, but leaving this open since also need to resolve `@:dce` 👌