Alexandre Ardhuin
Results
32
issues of
Alexandre Ardhuin
With the following code: ```dart extension type MapType._(JSObject _) implements JSObject { @JS('f') external void _f(); void Function() get f => () => _f(); } ``` a lint `unnecessary_lambdas` appears...
type-bug
P3
false-positive
I just saw in `tool/generate_bindings.dart` that `BasicGet` is ignored. What's the reason? (I have a use-case where I need to make a basic get on a queue) Would it be...