Jarrio

Results 23 issues of Jarrio

Reproducible: Main.hx ```haxe package; import haxe.Timer; import exp.ecs.Engine; class Main { static function main() { var engine = new Engine(); engine.systems.add(new MovementSystem()); // run the engine new Timer(16).run = function()...

Would be cool if we could pass `posInfos` to the logger to forward error lines. ```hx class Main { static function main() { write("Hey"); } static function write(a:String, ?infos:PosInfos) {...

```hx var uid = data?.value ?? null; if (uid == null) { return; } if (accs != null) { trace('Changed account to $uid'); Globals.keys = accs[uid]; } ``` Running rename...

I tried twice, I tried with the recommended script and I tried making my own, both failed to disable windows defender. What am I doing wrong?

| Haxe: 5.0.0-alpha.1+c177bd5; OS type: windows; | File "src/filters/exception/saveStacks.ml", line 114, characters 21-28 | Called from Stdlib__List.iter in file "list.ml", line 112, characters 12-15 | Called from Domainslib__Task.parallel_for.work in file...

https://github.com/user-attachments/assets/95e8bd9f-8e92-431f-8589-f30363bea003 Using haxe 5, but another user had the same issue on haxe 4

``` haxelib git logging https://github.com/core-haxe/logging haxelib git db-core https://github.com/core-haxe/db-core haxelib git db-mysql https://github.com/core-haxe/db-mysql haxelib git mysql https://github.com/core-haxe/mysql haxelib git promises https://github.com/core-haxe/promises haxelib git libmysqlclient https://github.com/core-haxe/libmysqlclient ``` ```-cp src -D analyzer-optimize...

```hx abstract class Foo { abstract public function getData(type:Items = Sword):Void; } enum abstract Items(String) { var Sword; } ``` This code is considered fine on all targets besides hxcpp...