Rudy Ges

Results 57 issues of Rudy Ges

This doesn't work: https://try.haxe.org/#c35B8161 ```haxe class Test { static function main() { var foo:?Int->Void = (?foo:Int) -> trace(foo); var bar:?Int->Void = test(foo); // Ambiguous overload } extern inline overload static...

Start flashlight app as "off", with a small icon, and toggle between this and actual flashlight on tap/button. I use flashlight app in quick ring and this prevent accidental flash....

`haxelib install install.hxml` currently supports things like `-lib something:git:git-url#reference` This PR adds support for `-lib something:dev:../libs/something` too (mapping to `haxelib dev something ../libs/something`)

Added tests to check if `var x;` and `var a, b = X;` syntax was still working. Closes #107

This works, while it shouldn't. ```hx var script = " var sum == 1; // Or any other operator? Same with `var sum > 1;` sum; "; var parser =...

When using `if` without brackets, the scope stays the same and variables can be shadowed: ```haxe var expr = ' var a = "test"; if (true) var a = 42;...

This looks interesting, but it's only available for macOS right now so I can't give it a try. It should be possible to integrate with other OS since it is...

While working with haxe language server, I ended up with a compilation server blocked a few times with a Stack overflow error. Third time gave me a call stack from...