Alexandre Ardhuin
Alexandre Ardhuin
This seems to require some changes on the analyzer API. For now there is a `context.canBeConstConstructor(node)` but in the case of default constructor there is no node corresponding to this...
This need to be fixed as the lint checks now all Widget arguments and not only child/children (this was requested as part of a review on #2714)
In my opinion the issue is more general and arises at several places (assignments, arguments, declarations...) where a `dynamic`, `Object`, `Function` is expected. For instance in the following case I...
> This case also does not generate a lint report, but I expected it would. I expected the same. Those cases were just forgotten during the implementation. I guess the...
Unfortunately I don't know what has been done. I only found this stack in logs after seeing the process done.
It's really strange to face 2 different behaviours in the following samples: ```dart // shutdown() works and stop the program print(await client.method(Empty()).length); await channel.shutdown(); // shutdown() doesn't work and the...
The following code seems to work: ```dart import 'dart:async'; import 'package:grpc/grpc.dart'; import 'package:http2/transport.dart'; ClientChannel createChannelToLocalService(Service service) { final serverToClient = StreamController(); final clientToServer = StreamController(); final server = Server([service]); ServerTransportConnection.viaStreams(clientToServer.stream,...
There is a [test](https://github.com/a14n/dart-decimal/blob/cbfc0a198d30a3eb4860f22357bc1281d2955ae9/test/intl_test.dart) that succeeds for `NumberFormat`. Can you provide the decimal number that failed?
Attempting to make such a lint I face several questions/feedbacks: I think this lint shouldn't apply to libraries that are not reusable library. To detect those _API-libraies_ I look for...
Thanks for your feedback. > So in your example, `A` is already in the export namespace of `c.dart` and there's no need to have an explicit export. There might be...