Bob Nystrom

Results 973 comments of Bob Nystrom

Oops, this should have been closed a while back. It's definitely working now. :)

This is a neat idea. I don't know when/if I'll ever find the time to do it, but I like it.

This is a reasonable request, but I think it is out of scope for the formatter, for a few reasons: * Reordering code raises some subtle issues. In particular, there...

> @munificent at least could be nice to create IntelliJ plug-in or add Arrange code as IntelliJ Code Style options. > > > It's not clear what ordering to prefer...

> @munificent Could I kindly ask you GitHub repository you suggest to post this issue I believe the Dart IntelliJ plugin is developed here: https://github.com/JetBrains/intellij-plugins/tree/master/Dart

I believe this is already handled well by our other tooling, at least in IntelliJ and Android Studio.

This looks like an issue with the Dart IntelliJ plug-in. @jwren, do you know where this issue should go?

Yeah, I agree that isn't ideal. Should hopefully be an easy fix.

I spent some time digging into this and, unfortunately, it's harder than it seems. Back before Dart 2.0, Dart had no support for generic methods. We started adding support for...

The [forthcoming](https://github.com/dart-lang/dart_style/issues/1403) [tall style](https://github.com/dart-lang/dart_style/issues/1253) doesn't have any special support for the ancient pre-Dart 2.0 generic method comments, so you get: ```dart external Pointer /**/ parray; external Pointer pparray; ``` That...