Alexandre Ardhuin

Results 32 issues of Alexandre Ardhuin

with Dart-2.5.1 the following code: ```dart f() { a.b().m( t: '', ); a.b.m( t: '', ); a.m( t: '', ); } ``` is formatted as: ```dart f() { a.b().m( t:...

common
difficult
risky
meh
trailing-commas

Actual: ```dart class PestoStyle extends TextStyle { const PestoStyle({ double fontSize = 12.0, }) : super( inherit: false, ); } ``` expected: ```dart class PestoStyle extends TextStyle { const PestoStyle({...

common
easy
safe

Actual: ```dart static final String paragraph1 = '''Have you ever held a quince? It\'s strange; covered in a fuzz somewhere between peach skin and a spider web. And it\'s hard...

As `getElementById(id)` is defined by : ``` dart Element getElementById(String id) => querySelector('#$id'); ``` It doesn't work with ids like `my.id` because it is handled as finding an element with...

**Is your feature request related to a problem? Please describe.** Currently (with faststream-0.4.7) when multiple rpc publications are done simultaneously calls are done one after the other. IIRC this is...

enhancement
RabbitMQ

```dart dynamic x; x = (String a) => a.length; // should be OK ```

type-bug
P3
false-positive
set-none

It would be useful and nice to be able to customize some lints with parameter/configuration. For instance: ```yaml linter: rules: - file_headers: pattern: '// Copyright 2015 The Chromium Authors. All...

type-enhancement
P3

When parsing [PBF](https://wiki.openstreetmap.org/wiki/PBF_Format) files from open-street-map it looks like reading [PrimitiveBlock](https://github.com/openstreetmap/OSM-binary/blob/18de4931609c6eac94450dbabb50d82aea4a0688/src/osmformat.proto#L91) is 2 times slower in dart compare to java. I attached a [primitiveBlock.zip](https://github.com/dart-lang/protobuf/files/5478182/primitiveBlock.zip) file containing a buffer (8497305 bytes)...

area-vm