Jens Fischer

Results 393 comments of Jens Fischer

The formatter does currently not insert or remove tokens.

Not sure about "major" changes, @AlexHaxe probably has a better idea on that, but definitely not as straightforward as it might seem (ranges of subsequent tokens would have to be...

Similar: ```haxe class Main { static function main() { [ if (foo) bar else foo, if (foo) bar else foo, if (foo) bar else foo, if (foo) bar else foo,...

I actually [got it working in a fork](https://github.com/HSOAutonomy/CppStyle/commits/master) - the functionality itself was simple, the big issue is the CDT dependency. Not sure if you can have optional dependencies in...

Generating the xml files works fine, but dox has some issues with them when trying to generate the docs: ``` haxe Parsing ./flash.xml Parsing ./neko.xml Called from ? line 1...

Since https://github.com/HaxeFlixel/flixel/pull/1668, there really isn't all that much API that exclusively exists on a specific target, so this is probably not worth the time investment.

I don't think this is a dox issue.

Type inference is always affected by order though? For instance this doesn't seem much different to me: ```haxe class Main { static function main() { var a = []; a.push(new...

I just stumbled over #2715 - not due to upgrading from an anicent jOOQ version, but simply due to wrong API usage (i.e. doing `FIELD.eq(somethingNullable)`). I think this could've been...

I think we're already doing quite well using utest's reporter API for 2. and 3., and that's probably the approach that gives us the most flexibility (since we have access...