Simon Krajewski

Results 881 comments of Simon Krajewski

Could you try with `-D hl_no_opt`?

That one was about nested try/catch though, while this seems really basic... Maybe something else for @yuxiaomao to check out.

I don't see a solution here other than perhaps looking into losing the `Type parameters are not supported for rvalue functions` restriction, which may or may not come with a...

This also works: ```haxe final listener:Listener = { send: { function send(message:Message, body:T) { switch (message) { case move_to: } } send; } } ``` IMO this is what the...

Reading this makes my head hurt... I don't even understand how your example is supposed to work from the project directory because Haxe resets the cwd to the original directory...

Thanks, that makes it clearer! So the trick here is that there's a `--cwd` *before* the `--each`. I missed that in the original description, and I agree that in such...

Yes, but good call, I've added a test for this case as well to make sure.

Reopening because the tests for this issue expose a problem related to the compilation server. I think what happens is that the server is unaware of the cwd change, and...

I was thinking about that as well and I don't see any major obstacle here (other than performance problems like in #11487). I want to add format.hxb.Reader at some point,...

I don't know if this is how real Java devs handle this, but it's faster for me.