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

I don't understand why we would want to track this manually. The depth of an error should at all times be derived from the error's structure, and I don't see...

With the nightly build e477477 (2017-10-01 21:32); If I want resolve an `public static inline` with `Reflect.field`, I get null. Without `inline` is working. ```haxe class Test { public static...

platform-cpp

## INFO Haxe: `4.3.4` Target: `cpp` Platform: `windows` ## TEST CODE Main.hx ```haxe package; @:generic class BaseCustomType { var value:String; public function new() { value = "BaseCustomType"; } public function...

Update of https://github.com/HaxeFoundation/haxe/pull/10290

The follows results in a compile error: Cannot use abstract as value ```hx class Test { static function main() { final foo:Foo = cast "5"; if (foo is Foo) trace("ok");...

The following example [compiles and runs perfectly fine](https://try.haxe.org/#0ecF1abB) on versions from 4.2.0 to 4.3.6: ```haxe class Test { static extern inline overload function foo(src:S):Int { return src.iterator().next() + 1; }...

Hej, This piece of code fails : https://try.haxe.org/#C48f1122 ```haxe enum abstract MyE(String) /*to String*/{ // true, MEB => true]; static function main() { var len = Lambda.count(h); //

```js class Test { static function main() { new S(10,10); } } class S { public inline function new(x:Int, y:Int, z:haxe.Rest) {} } ``` Tested on latest Haxe https://try.haxe.org/#7a11F6b3

This error happens randomly when server compilation is enabled in a big project in nightly builds. I have managed to reproduce it with this minimal project: ```hx // Main.hx import...

```haxe class Main { static public function main() { final vec = new haxe.ds.Vector(2); trace(vec[0] == 5); // comment this, build, uncomment, save file trace(vec[1] == 5); #if php final...