Aidan Lee

Results 65 issues of Aidan Lee

If you have two components which both override onmousedown and attach them to the same entity both of the components onmousedown events will be called as expected. If you then...

Noticed that sometimes reading from the stdout of a process never returns on windows. Digging into things it seems like when the child process closes the stdout pipe isn't closed...

https://github.com/HaxeFoundation/haxe/pull/9935 Added array object for 64bit ints and a 64bit int hash store as well as removing a lot of the Int64 helper stuff.

Hello, I've made an attempt at improving the `haxe.Int64` type of the cpp target by having it be treated as the existing `cpp::Int64` define (__int64 on msvc, int64_t otherwise) and...

platform-cpp

Hello, I've recently came across two issues for macros with the `hxp.HXML` class. The first is that `addMacro` only adds one dash for the macro flag when it should be...

[Corresponding hxcpp pr](https://github.com/HaxeFoundation/hxcpp/pull/1047) Something I started last year but just now decided to come back to. This attempts to have all functions be implemented as a strongly typed callable object...

WIP Libuv based asys api implementation. Trying to hide the libuv-ness behind a generic asys header so someone could provide an alternative asys implementation for platforms which might not support...

Makes the `MemType` enum and `GetMemType` function accessible from the `hx` namespace as mentioned in #1082.

See https://github.com/HaxeFoundation/haxe/pull/11151 for details

We can root objects, but from what I can tell we can't pin to prevent them from being moved by the GC between collections. My use case for this is...