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

As an alternative to #11622, adds support for `@:buildOrder(Late)` and `@:buildOrder(Early)` on build macros, letting those specify if what they're doing requires running before or after other build macros for...

Compiling (note: this also works for display requests) with `-D dump-invalidation-stats` (`X = 1`) or `-D dump-invalidation-stats=X` will generate a `dump/[target]/invalidation_stats.dump` file with some data about how many modules are...

Recently, the following example does not compile, with message "haxe.Int64 should be Int". However, we should be able to increment an `haxe.Int64` value. Without getter or without increment, the code...

Given: ``` haxe var a: Float = 111111111112222222.3333; var b = 0xFFFFFF; var c = 281474976710655; var d = 0xFFFFFFFFFFFF; ``` All of them except for `d` will compile as...

When compiling a macro heavy project with vscode, we observed that `haxe.exe` 's memory usage grows quickly at each compile (and diagnostic) when the source is modified. It grow easily...

When I made the HL implementation for null ops, I found that we can have some more spec tests - when doing ``/`=` between `null` values: it does not really...

haxe source : ```haxe function multiply( a, b = 1 ) { return a * b; } ``` Current output : ```js function multiply(a,b) { if(b == null) { b...

In this situation ```haxe class Extensions { inline static public function findMin(a:Array, f:T->Float) { var minVal = Math.POSITIVE_INFINITY; var minItem = null; for (item in a) { var v =...

On nightlies if you have module `Foo` containing ```haxe class Foo { public static function foo() {} } class Bar { public static function bar() {} } ``` and another...