tobil4sk
tobil4sk
Here's a more minimal sample to reproduce the issue: ```haxe // Main.hx @:unreflective class MyIterator { var count = 0; final max:Int; public function new(max:Int) { this.max = max; }...
I was also concerned about why the promise isn't being rejected properly and no error is reported. It seems to be due to an assumption made by db-mysql or the...
@kLabz this line specifically is what broke it: https://github.com/HaxeFoundation/haxe/commit/0b2b0daacd9125317fa355c85df69c26acbeb83d#diff-fae87f6bc39fbf2aa94659224d806082a9c651c9e8921bb2c1b81b1875cd3370R417 `ctx.t.titerator pt` is a dynamic Iterator object, which means dynamic field resolution is used for the `next` and `hasNext` fields. This...
I wonder if it could be somehow related to #11666?
`cpp.RawPointer` and similar types are syntactic features for generating specific c++ code with the correct `*` `->` types/operators. Cppia is not c++ code so it wouldn't make sense to be...
> Long term, it would be more flexible for hxcpp to allow using a custom build of mbedtls. This would require lime haxelib to be shipped with the mbedtls headers...
Hm, I've managed to reproduce the infinite loop without externs involved. This version is also broken with 4.3.7: ```haxe class Parent {} @:native("Parent") class Child extends Parent {} ``` I'm...
Here is a page from the microsoft docs which mentions the define, confirming that it's windows-specific: https://github.com/MicrosoftDocs/cpp-docs/blob/25815cbe0dd6bae018890dd85eb10e5e5feece8e/docs/c-runtime-library/security-features-in-the-crt.md
I noticed, the msvc toolchain already adds this flag for all msvc builds: https://github.com/HaxeFoundation/hxcpp/blob/1618253d7bb2dd8eea1bc7ffcd612452df76a7b7/toolchain/msvc-toolchain.xml#L104 So I wonder if it's safe to remove it from `haxe-target.xml`?
Here's a slightly more minimal sample to reproduce the issue: ```haxe function main() { var arr = [10,0]; trace('Before flipping: ' + arr); // Flips values at 0 and 1...