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 using haxe 4.2.5 ```haxe class Macro { public static macro function myMacro():Expr { Context.defineType({ name: "baz0", kind: TDField(FVar(null, macro "hello")), fields: [], pos: Context.currentPos(), pack: ["foo", "Bar"], }); Context.defineType({...

There are some missing `@:pure` annotations in the std lib, which I noticed after fixing this as some unnecessary static vars would now be preserved. Fixed the ones I noticed....

When working with `-D hl-check`, I saw the following situation generate `@:implicitCast` (`[Meta:String] :implicitCast` in dump). `@:implicitCast` is not parsed by HL, which cause a type mismatch on call to...

Windows has a 260 character path limitation, unless you [enable Long Path Support](https://learn.microsoft.com/en-us/windows/win32/fileio/maximum-file-path-limitation?tabs=registry) - which I have done. I learned the hard way today that the Haxe compiler can't write...

Hej, When using `?pos : haxe.PosInfos` as last argument onto a macro function (inline expression) I get this message : `haxe.PosInfos is not allowed on macro functions, use Context.currentPos() instead`...

Probably related to: https://github.com/HaxeFoundation/haxe/blob/development/src/typing/typerDisplay.ml#L199 ```haxe class Main { static function main() { foo(0, (name, age) -> {}); foo(0, (name, age) -> { final f = (a, b, c) -> {}...

Reproduction steps: 1. Download https://github.com/FunkinCrew/Funkin on the `main` branch 2. Follow the build steps, but using Haxe 5.0.0-alpha (`b99eda0`) - Note: you need to also use https://github.com/FunkinCrew/hxcpp-debugger on branch `haxe-5-fix`...

If I have this extern for a CakePHP class ```haxe package cake.orm; import php.NativeArray; @:native("Cake\\ORM\\Table") extern class Table { function initialize(config:NativeArray):Void; } ```` And this subclass ```haxe package app.model.table; import...

platform-php

Hover over `get` and `set` shows errors in output: ```haxe abstract State({}) from {} { public function new() { this = {}; } @:op(a.b) function get(key:String):Any { return key; }...