haxe
haxe copied to clipboard
Haxe - The Cross-Platform Toolkit
Example: ```haxe final b = a + {final x = 10; x * x;}; // this is fine final b = {final x = 10; x * x;} + a;...
This is fixed in master, but happens on 4.2.5. Extracted from basic Kha sample. Just thought if such thing can be added as test someway, if there is no other...
The problem is only with cpp target when test via Github actions ( https://github.com/HaxeFoundation/haxe/runs/7947619714?check_suite_focus=true#step:12:2762 ) . It's not possible to repeat it on my PC. Here is the code ```haxe...
This restores macOS 10.13 support by ensuring that the pcre code that's linked into Haxe is built from source with the 10.13 deployment target. This fixes https://github.com/HaxeFoundation/haxe/issues/10723
Consider the following Haxe code: ```haxe class Main { public static inline var maxLightsCluster = getMaxLightsCluster(); static function main() { trace(maxLightsCluster); } public static inline function getMaxLightsCluster(): Int { #if...
Microsoft is reworking the .NET infrastructure and now there's a new version of .NET called ".NET Core". Basically it's an overhaul and cleanup of the framework, but it introduces a...
Seems like we forgot to fix the lua tests after "temporarily disabling them" in 8027d746888afb9aeeee077b737dec175417945a We discussed this on slack a long time ago, but we need to update: https://github.com/jdonaldson/haxe-deps...
Hej, As quickly discussed here https://community.haxe.org/t/php-mysql-bigint-in-resultset-given-as-string/3165/3 maybe some adjustemens should be done in this function to get correct types.
Minimal example: ```haxe package ; function main() { var cfg:DialogConfig = { priority: 0, ui: (null:RenderResult), }; } @:forward abstract DialogConfig(DialogConfigData) from DialogConfigData { @:from static function fromRenderResult(r:RenderResult):DialogConfig return {...
Would be nice if `Null` was inferred here, so it compiles with null safety enabled: ```haxe class Main { @:nullSafety public static function main() { var foo = null; //...