haxe
haxe copied to clipboard
Haxe - The Cross-Platform Toolkit
Nightly b537e99, worked in 4.3.4 ```haxe switch ("abc") { case _.charCodeAt(0) => 'a'.code: trace("1"); case _.charCodeAt(1) => 'e'.code: trace("2"); // default: trace(3); // "Local variable _hx_tmp used without being initialized"...
This seems like a significant oversight, so in addition to reporting this, I'm kinda hoping for a sanity check and maybe some additional historical context from anybody who knows (was...
I tried making a tool that shortens some repetative code writing using a series of inputs. On of them requires hebrew text. right after i "submit" the hebrew text, i...
Lua tests have been fixed in https://github.com/HaxeFoundation/haxe/pull/10916, but are still failing on windows. [Current attempt](https://github.com/HaxeFoundation/haxe/pull/10917) at fixing CI for windows is making progress but is not there yet. @inklit if...
https://try.haxe.org/#FCeC7D58 ```haxe enum VariantType { VT_String(s:String); VT_Float(s:Float); } @:transitive abstract Variant(VariantType) from VariantType { @:from static function fromString(s:String):Variant { return VT_String(s); } @:to public function toString():String { if (this ==...
Project: hashlink-debugger master ([3e37095e](https://github.com/vshaxe/hashlink-debugger/commit/3e37095e260beba80965d5658b603de6c7429878)) Haxe: 7b92f74f. Same error with 2106be457 (Juin). Add `var exc=` before line 435 `var excPos = jit.align.ptr * 5 + 8;` gives a compiler failure in...
When using `--macro exclude('package')` with compiler cache, this will cause problems with inline constructor. First compilation works, but then next one (if the file using the inline constructor changes) will...
When hovering over `Std`, only that token is part of the hover range. However, when hovering over `int`, the entire `Std.int` is highlighted. This has an unfortunate consequence: When you...
If the path of a file has an `@` in it, an error will occur with diagnostics. For example, I have a folder called `@Projects`. This causes the error to...
Creating this issue to write down an idea for possible significant performance improvements for the cache server (and as a consequence - IDE performance). --- The problem: Currently if module...