Dmytro Hryppa

Results 10 comments of Dmytro Hryppa

@Aurel300 > The better workaround is: @:headerCode('#include "a.h"\n#include "b.h"') Yeah... But `@:headerCode` will not work for extern class, isn't it? It is only for regular Haxe classes. So you need...

Hello! Try to put `@:unreflective` meta on your Client class like: ```haxe //Client.hx package log; @:unreflective class Client { static var logger = LogManager.getLogger(); } ```

Nice to hear it works! It removes all that `Dynamic` stuff from your generated classes or methods. Basically, it removes reflection support. But maybe there are more hidden things under...

I assume that's because Haxe's `Array` will work only with Haxe objects and will always be generated as `::Array< ::Dynamic>`, so it can't cast IFoo to\from Dynamic type because IFoo...

>Another option, ofc, would be to make Mbedtl work correctly statically I'm currently using haxe->hxcpp->static_lib for an iOS project. And that lib is actively using HTTPS and it works fine....

> I've looked for ways to do that, but couldn't find anything. Any suggestion of tool, maybe something like `rcedit`? πŸ€” Hello! You could try to run this command to...

Any progress on this? Would be really nice to provide a plugins-like system. It may be very useful for modding games made with Heaps :)

Yeah, openfl legacy. Keyboard is opened, and when I press keys - nothing happens at all, only blinking cursor On cpp, flash and html5 - TextInput worked fine :)

Just tested, TextField with openfl legacy not worked, looks like the problem with openfl :( But with openfl-next is not worked at all, even keyboard is not opens So, sorry...

Ah, looks like this `Main.hx:75: characters 17-21 : Class has no field ASM7` error happend to me before, because I used Haxe dev for autocompletion and Haxe 4.1.4 for compilation...