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'm seeing some version of this on every other run: ``` OpamDownload.Download_fail(_, "curl failed: \"D:\\\\cygwin\\\\bin\\\\curl.exe --write-out %{http_code}\\\\n --retry 10 --retry-delay 2 --user-agent opam/2.3.0 -L -o C:\\\\Users\\\\runneradmin\\\\AppData\\\\Local\\\\Temp\\\\opam-6100-4b6a36\\\\sha512.sum.part -- [https://cygwin.com/sha512.sum\](https://cygwin.com/sha512.sum/)" exited with...

Shouldn't this compile with loose null safety? Neither `a1` nor `a2` can be `null` here due to the previous checks: ```haxe @:nullSafety class Main { static function main() {} public...

feature-null-safety

I don't know how to reproduce this yet, but on a coroutine branch I'm seeing this error on lua. Here's a stripped down version of the relevant output: ```lua while...

platform-lua

It was found that when doing `lhs == rhs`, the compiler first tries to assign lhs to rhs and thus also prefers implicit casts in that direction, which seems unintuitive....

Hej, Sorry for annoying you with these exceptions but this piece of code works everywhere but in PHP it gives something wrong : ```haxe class Err extends haxe.Exception{ public function...

I've noticed that by deleting [this file](https://github.com/HaxeFoundation/haxe/blob/development/std/eval/_std/sys/thread/EventLoop.hx), the coroutine tests for eval go from failing spectacularly to passing. This made me remember that I came across this before and asked...

In the following example, we can compare abstracts physically while we would like to avoid that. I propose that we all some abstract to be tagged with metadata `@:uncomparable` so...

Another long one, so make sure you're sitting comfortably. Corresponding hxcpp PR: https://github.com/HaxeFoundation/hxcpp/pull/1189 # The Problem Working with the current interop types comes with many pitfalls which are not immediately...

When used with switches (possibly other places), inline variables are not always treated as constants when `-D no-inline` is used. I would not expect this flag to impact whether code...

If i use `new WebSocket` (hxnodejs-ws) that depends on `Url` (from hxnodejs), i get deprecation warning about `Url` function that is not used, but has deprecated typedef in overload. There...