Simon Krajewski
Simon Krajewski
I think we should turn TypesPrinter into a haxelib. That way it can be updated independently of the Haxe standard library, and be used independently of vshaxe. We should also...
Email I received: ``` Hey folks of Haxe, i just downloaded the latest haxe windows installer but suddenly avira told me, there would be a virus in it. Crypt.Xpack.81397 to...
We want something like this, nicely visualized of course: * Evaluating Haxe? We can help! * I have an Actionscript 3 codebase and need an alternative * Other people have...
My [recent change](https://github.com/HaxeFoundation/haxe/commit/f9b537ae71a8589ea2daf9deb553ff09f8c11211) somehow broke StringMap on the C# target: ``` function main() { var smap = ["foo" => 1]; var index = smap["bar"]; $type(index); // Null trace(index); // 0...
Should be fairly straightforward, at least for the hxcpp-debugger. All it needs is a `set var = value` or even `set obj.field = value` command.
The parser is currently very permissive by default. It inserts various missing tokens and skips invalid ones. This is nice for display support, but if we want to make it...
Here's a different approach to handling the internal state for coroutines. This is pretty much #10128 but without the additional argument to `TFun`. The idea is this: * Instead of...
I just accidentally put `build.hxml` in my `build.hxml` and that didn't go very well. It would be nice if the compiler caught that.
``` File "src/macro/eval/evalLuv.ml", line 1951, characters 29-37: 1951 | FS_event.start event path callback ^^^^^^^^ Error: This expression has type (string * Luv.FS_event.Event.t list, Luv.Error.t) Result.t -> unit but an expression...
This implements what I'm talking about in #11510. When using `--hxb`, a top-level `StringPool.hxb` is generated, which is then read once and passed to all hxb readers. For now, this...