AlexHaxe

Results 90 comments of AlexHaxe

no problem, luckily github has a `transfer issue` button :)

yeah, we will have to play with defaults for a bit, to get a good balance... although I think in this case maybe `wrapping.callParameter` should kick in

inlay hints feature uses hover requests to provide type and name info. so what do you see when hovering over locations where you disagree with generated inlay hints? do you...

> `this.adjacencies[top]` should be an `Array`, not `GraphData` as suggested by the hint. In the example above I am hovering over the identifier `adjacencies` so the hint given in the...

I assume languageserver calculates incorrect position info when requesting hovers/completion from Haxe due to 4-byte UTF-8 chars. it works fine with German umlauts (but they are only two bytes).

seems like that's broken in latest formatter. apparently none of the 742 testcases caught it. I'll add one more then. :)

Basically test adapter needs three hooks / callbacks: 1. filtering of testcases 2. reporting one or more test results 3. reporting finished Right now we hook into supported frameworks quite...

open vscode with e.g. `samples/utest` folder (*), set a break point and press F5 / start debugging (*) or any other sample folder

We need a selenium for VSCode :)

`VarTypeHint` only checks for variables (`var` and `final`) not function parameters. as far as I'm aware there is no test to enforce type hints for function parameters. and that would...