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

There are issues with latest versions of ctypes and camlp5 opam modules. This issue is created to not forget to fix them and then update dependencies in `opam` file. -...

On HL, I am not able to extend a `@:structInit` class if the subclass has a constructor, receiving `Invalid_argument("List.map2")`. See below example, which works in try.haxe.org on JS but not...

https://launchpad.net/~haxe/+archive/ubuntu/releases PPA last version: 4.2.4 Last version: 4.2.5

It would be nice if one could use the server in a hybrid mode that uses the cache only for display/diagnostics and is ignored in any build (if the build...

Fixes #2479 This is an implementation with correct `EnumValueMap` behavior for non-scalar enum parameters. Target-specific implementations could be added as a next step to improve runtime performance.

I've noticed a few cases which I'll enumerate in this issue: - [ ] Eternal @:keep-ing ![Merge_CLAxLLuW81](https://user-images.githubusercontent.com/634365/160549705-ee6375f7-cb15-4e88-a6a0-4284cdd4c03c.png) This seems to be specific to the main function for some reason. I'm...

Currently, the code is debug checking every array access for non basic types. Most of the other calls in the code to unsafe_cast_to use '~debugchk:false` but array access did not....

Lower-level async API. Take 1. I tried to stay close to C API. Please, review thoroughly. Especially the socket-related API, because I don't have much experience with sockets. Also, your...

I'm trying to use the `@:native` metadata on a typedef field: ```haxe typedef MyStruct = { var field01 : String, @:native('package') var pack : Dynamic } ``` But the `@:native`...

enhancement
haxe-foundation-partner

Calling the _inc function with a local var n:Int = 0 works but if n is not a local variable the result after the _inc call will be unchanged `...

bug