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

It would help a lot to have source maps that are language-independent in a Haxe-specific file format. My context is: I'm compiling Haxe to Lua code, but unfortunately, unlike Javascript,...

enhancement
platform-lua

This is the haxe side change for https://github.com/HaxeFoundation/hashlink/pull/559 This moves a bit of code around, and adds a new function `hl.UI.chooseFileMultiple`, which is a version of `chooseFile` that is always...

platform-hl

Consider following code: ```haxe // Test.hx import Test2; final FOO = "FOO"; final BARFOO = BAR + FOO; function main() { trace('$FOOBAR $BARFOO'); } // Test2.hx import Test; final BAR...

I could not find a freebsd package.

My [recent change](https://github.com/HaxeFoundation/haxe/commit/f9b537ae71a8589ea2daf9deb553ff09f8c11211) somehow broke StringMap on the C# target: ``` function main() { var smap = ["foo" => 1]; var index = smap["bar"]; $type(index); // Null trace(index); // 0...

platform-cs
regression

Double forward slashes in paths seem to be interpreted as directories with empty names in `haxe.io.Path.normalize()`: ```haxe class Test { static function main() { trace("Have:", haxe.io.Path.normalize("ProjectDir/Sources//../Assets")); // Have: ProjectDir/Sources/Assets trace("Want:",...

See https://github.com/microsoft/winget-pkgs and https://devblogs.microsoft.com/commandline/windows-package-manager-preview/

> [this forum post](https://community.haxe.org/t/working-with-generics-entities-and-components/2331) got me thinking about this This looks like it should work, since `C` is known at compile-time: ```haxe @:generic function doCast(v:Any, c:Class):C { return cast(v, C);...

feature-generic

``` # haxe -main Hello -cpp . haxelib run hxcpp Build.xml haxe -Dhaxe3="1" -Dhaxe_ver="3.201" -Dhxcpp_api_level="321" -I"/usr/lib/haxe/extraLibs/" -I"/usr/local/lib/haxe/extraLibs/" -I"" -I"/usr/lib/haxe/std/cpp/_std/" -I"/usr/share/haxe/std/cpp/_std/" -I"/usr/local/lib/haxe/std/cpp/_std/" -I"/usr/lib/haxe/std/" -I"/usr/share/haxe/std/" -I"/usr/local/lib/haxe/std/" Creating /tmp/obj/linux64/__pch/haxe/hxcpp.h.gch... Compiling group: haxe g++...

When targeting Hashlink, the expression `n >>>= 1` does not assign a new value to `n` if used inside of a while loop, which may cause an endless loop like...