Alexandre Ardhuin

Results 102 comments of Alexandre Ardhuin

The above PR doesn't handle expression function body.

Dup of #798 > But when the comment is an _ignore_ comment, that might not be the right behavior. If this comes up frequently enough, it might be worth giving...

I forgot to notice that those extra-indent shouldn't be there :)

>doesn't otherwise try to align intra-line content. It already adds spaces for initializer list with several entries: ```dart class A { final a; const A( p, ) : a =...

I don't know how to reproduce that but it may be fixed by #20.

It a huge task to migrate google_maps package and I'm waiting for several js-interop improvements to make it easier: - [Allowing `@JS` on class method](https://github.com/dart-lang/sdk/issues/24779) - [Allowing concrete methods in...

A common pattern to generate code (with source_gen): ```dart // file.dart part 'file.gen.dart'; class A extends $A { } // file.gen.dart part of 'file.dart'; class $A { myAwesoneGeneration() => null;...