haxe icon indicating copy to clipboard operation
haxe copied to clipboard

Haxe - The Cross-Platform Toolkit

Results 401 haxe issues
Sort by recently updated
recently updated
newest added
trafficstars

`ComplexType`s in parsed ASTs seem to have hidden position data, and modifying them in a particular way will result in broken position data, which prevents completions in IDE and causes...

Haxe dev (3cb7fe4) is currently throwing an exception during API doc generation (dox CI against nightlies is broken): > std/haxe/rtti/XmlParser.hx:289: characters 5-10 : Uncaught exception Incompatibilities between haxe.Rest in cs...

bug
documentation

Any project file is diagnosed for an extremely long time (more than 10 seconds). `haxe .... SomeFile.hx@0@diagnostic` **Condition:** - Large project (approximately 6000 files) - haxe 4.0.3 or 4.2.3 -...

When I compile my project it runs through most of it and then outputs this: Invalid_argument("index out of bounds") UPDATE: I believe it's something due to dead code elimination. I...

bug
platform-hl

So currently the doc for `EReg.matched` says this: > The index `n` corresponds to the n-th set of parentheses in the pattern of `this` EReg. If no such sub-group exists,...

documentation

I am trying to implement a `java.util.List` with haxe code: ```haxe class Main { static function main() { trace(new MyArray()); } } class MyArray implements java.util.List { public function new()...

This doesn't work: https://try.haxe.org/#c35B8161 ```haxe class Test { static function main() { var foo:?Int->Void = (?foo:Int) -> trace(foo); var bar:?Int->Void = test(foo); // Ambiguous overload } extern inline overload static...

Don't know yet how to reproduce this, but I'm seeing a case where a cached module keeps getting more and more dependencies of the same `import.hx`.

**Environment** macos monterey 12.1 haxe 4.2.4 utest 1.13.2 haxe-concurrent 3.0.2 The issue can be reproduced by creating a test case like the following one (even if the issue is triggered...

When marking a class as `@:structInit`, "non-real" properties are required during creation. Marking the property with `@:optional` will work around the issue for some targets, but not others. Notably, Hashlink...