Frixuu
Frixuu
Applies to both Haxe version 4.2.5 and development (f3c1a7d) ## What I want to achieve I'm trying to use the Lua target for modding a certain video game. The API...
Current licensing options have several issues: - They are too ambiguous. Is "GPL" version 2 or 3? Does it allow later revisions? How many clauses is "BSD"? SPDX IDs are...
This implementation creates two threads: - Thread A runs the libuv loop in the Default mode (so it does not saturate the CPU). - On an incoming TCP connection, thread...
According to spec, HTTP header field names should be treated in a case-insensitive way. However, so far this was not the case with Weblink. This meant a bunch of things...
This approach requires app devs to depend on [deasync](https://www.npmjs.com/package/deasync), a small native Node module that allows some of the code to be blocking. Additionally: - Made TCP dependency more obvious,...
Hi! :wave: Given an expression: ```haxe var foo = "https://example.com"; ``` I'd expect: ```scheme (module (variable_declaration (keyword) (identifier) (operator) (string) ) ) ``` but I actually get: ```scheme (module (ERROR...
> The networking-related APIs in the Haxe standard library currently differ significantly > from those found in other languages such as C#, Java, or Rust. > This proposal introduces changes...
The following example [compiles and runs perfectly fine](https://try.haxe.org/#0ecF1abB) on versions from 4.2.0 to 4.3.6: ```haxe class Test { static extern inline overload function foo(src:S):Int { return src.iterator().next() + 1; }...
Spawns a Node process that looks for files in the project root. The official Java extension also uses a Node script as a workaround for some issue; I do not...