Skip to content

Commit 05058a7

Browse files
authored
Apply internally enabled lints (#816)
This enables lints `prefer_final_in_for_each` and `prefer_final_locals` and fixes lints errors. These lints were previously enabled in internal version in the following CLs: - cl/523340795: updated protoc_plugin source - cl/523340868: updated protoc_plugin tests - cl/523340813: updated protobuf source protobuf tests are not yet updated internally. Majority of the changes are generated by `dart fix --apply`. Manual changes were done in two places: - `dart fix` does not fix lints in `<type> <var> = <expr>;` syntax, it looks like it only replaces `var` with `final` and does not add `final` before a type. A few lint errors were fixed manually for this. - protoc_plugin/lib/src/client_generator.dart updated manually to fix the lints in generated code. The difference in generated code can be seen in changes in `protoc_plugin/test/goldens`.
1 parent 9d7cf0d commit 05058a7

File tree

125 files changed

+1294
-1287
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+1294
-1287
lines changed

analysis_options.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ linter:
1313
- directives_ordering
1414
- no_leading_underscores_for_local_identifiers
1515
- omit_local_variable_types
16+
- prefer_final_in_for_each
17+
- prefer_final_locals
1618
- prefer_relative_imports
1719
- prefer_single_quotes
1820
- prefer_spread_collections

api_benchmark/lib/benchmark.dart

+12-12
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ abstract class Benchmark {
5252
{Profiler? profiler}) sync* {
5353
checkRequest(r);
5454

55-
var sampleMillis = r.duration;
55+
final sampleMillis = r.duration;
5656
setup();
5757

5858
for (var i = 0; i < samples; i++) {
@@ -61,7 +61,7 @@ abstract class Benchmark {
6161

6262
if (profiler != null) {
6363
profiler.startProfile(r);
64-
var s = _measureOnce(sampleMillis);
64+
final s = _measureOnce(sampleMillis);
6565
profiler.endProfile(s);
6666
}
6767

@@ -84,7 +84,7 @@ abstract class Benchmark {
8484
return 1;
8585
}, 100);
8686

87-
var sample = _measureFor(exercise, sampleMillis);
87+
final sample = _measureFor(exercise, sampleMillis);
8888
setCounts(sample);
8989
return sample;
9090
}
@@ -121,10 +121,10 @@ abstract class Benchmark {
121121
String summarizeResponse(pb.Response r) {
122122
checkRequest(r.request);
123123

124-
var prefix = summary.padRight(39);
125-
var sampleCount = r.samples.length.toStringAsFixed(0).padLeft(2);
126-
var median = measureSample(medianSample(r)).toStringAsFixed(0).padLeft(4);
127-
var max = measureSample(maxSample(r)).toStringAsFixed(0).padLeft(4);
124+
final prefix = summary.padRight(39);
125+
final sampleCount = r.samples.length.toStringAsFixed(0).padLeft(2);
126+
final median = measureSample(medianSample(r)).toStringAsFixed(0).padLeft(4);
127+
final max = measureSample(maxSample(r)).toStringAsFixed(0).padLeft(4);
128128

129129
return '$prefix samples: $sampleCount'
130130
' median: $median max: $max $measureSampleUnits';
@@ -133,19 +133,19 @@ abstract class Benchmark {
133133
/// Returns the sample with the median measurement.
134134
pb.Sample? medianSample(pb.Response? response) {
135135
if (response == null || response.samples.isEmpty) return null;
136-
var samples = [...response.samples];
136+
final samples = [...response.samples];
137137
samples.sort((a, b) {
138138
return measureSample(a).compareTo(measureSample(b));
139139
});
140-
var index = samples.length ~/ 2;
140+
final index = samples.length ~/ 2;
141141
return samples[index];
142142
}
143143

144144
/// Returns the sample with the highest measurement.
145145
pb.Sample? maxSample(pb.Response? response) {
146146
if (response == null) return null;
147147
pb.Sample? best;
148-
for (var s in response.samples) {
148+
for (final s in response.samples) {
149149
best ??= s;
150150
if (measureSample(best) < measureSample(s)) {
151151
best = s;
@@ -166,10 +166,10 @@ abstract class Benchmark {
166166
/// Executes [runner] repeatedly until [minimumMillis] has been reached.
167167
/// [runner] should return the number of times it ran the benchmark.
168168
static pb.Sample _measureFor(int Function() runner, int minimumMillis) {
169-
var minimumMicros = minimumMillis * 1000;
169+
final minimumMicros = minimumMillis * 1000;
170170
var reps = 0;
171171
var elapsed = 0;
172-
var watch = Stopwatch()..start();
172+
final watch = Stopwatch()..start();
173173
while (elapsed < minimumMicros) {
174174
reps += runner();
175175
elapsed = watch.elapsedMicroseconds;

api_benchmark/lib/benchmarks/get_strings.dart

+7-7
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ class GetStringsBenchmark extends Benchmark {
1818

1919
@override
2020
String get summary {
21-
var fill = fillValue == null ? 'null' : "'$fillValue'";
21+
final fill = fillValue == null ? 'null' : "'$fillValue'";
2222
return '${id.name}($height x $fill)';
2323
}
2424

2525
@override
2626
Params makeParams() {
27-
var p = Params()..messageCount = height;
27+
final p = Params()..messageCount = height;
2828
if (fillValue != null) p.stringValue = fillValue!;
2929
return p;
3030
}
@@ -36,13 +36,13 @@ class GetStringsBenchmark extends Benchmark {
3636

3737
// makes a rectangle where every cell has the same value.
3838
static pb.Grid10 _makeGrid(int height, String? fillValue) {
39-
var grid = pb.Grid10();
39+
final grid = pb.Grid10();
4040

4141
for (var y = 0; y < height; y++) {
42-
var line = pb.Line10();
42+
final line = pb.Line10();
4343
if (fillValue != null) {
4444
for (var x = 0; x < width; x++) {
45-
var tag = getTagForColumn(line, x);
45+
final tag = getTagForColumn(line, x);
4646
line.setField(tag, fillValue);
4747
}
4848
}
@@ -76,7 +76,7 @@ class GetStringsBenchmark extends Benchmark {
7676

7777
void _getDefaults() {
7878
var ok = true;
79-
for (var line in grid.lines) {
79+
for (final line in grid.lines) {
8080
ok = ok && line.cell1.isEmpty;
8181
ok = ok && line.cell2.isEmpty;
8282
ok = ok && line.cell3.isEmpty;
@@ -93,7 +93,7 @@ class GetStringsBenchmark extends Benchmark {
9393

9494
void _getStrings() {
9595
var ok = true;
96-
for (var line in grid.lines) {
96+
for (final line in grid.lines) {
9797
ok = ok && line.cell1.isNotEmpty;
9898
ok = ok && line.cell2.isNotEmpty;
9999
ok = ok && line.cell3.isNotEmpty;

api_benchmark/lib/benchmarks/has_strings.dart

+7-7
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ class HasStringsBenchmark extends Benchmark {
1818

1919
@override
2020
String get summary {
21-
var fill = fillValue == null ? 'null' : "'$fillValue'";
21+
final fill = fillValue == null ? 'null' : "'$fillValue'";
2222
return '${id.name}($height x $fill)';
2323
}
2424

2525
@override
2626
Params makeParams() {
27-
var p = Params()..messageCount = height;
27+
final p = Params()..messageCount = height;
2828
if (fillValue != null) p.stringValue = fillValue!;
2929
return p;
3030
}
@@ -36,13 +36,13 @@ class HasStringsBenchmark extends Benchmark {
3636

3737
// makes a rectangle where no fields have been set.
3838
static pb.Grid10 _makeGrid(int width, int height, String? fillValue) {
39-
var grid = pb.Grid10();
39+
final grid = pb.Grid10();
4040

4141
for (var y = 0; y < height; y++) {
42-
var line = pb.Line10();
42+
final line = pb.Line10();
4343
if (fillValue != null) {
4444
for (var x = 0; x < width; x++) {
45-
var tag = getTagForColumn(line, x);
45+
final tag = getTagForColumn(line, x);
4646
line.setField(tag, fillValue);
4747
}
4848
}
@@ -76,7 +76,7 @@ class HasStringsBenchmark extends Benchmark {
7676

7777
void runFilled() {
7878
var allPresent = true;
79-
for (var line in grid.lines) {
79+
for (final line in grid.lines) {
8080
allPresent = allPresent && line.hasCell1();
8181
allPresent = allPresent && line.hasCell2();
8282
allPresent = allPresent && line.hasCell3();
@@ -93,7 +93,7 @@ class HasStringsBenchmark extends Benchmark {
9393

9494
void runEmpty() {
9595
var allEmpty = true;
96-
for (var line in grid.lines) {
96+
for (final line in grid.lines) {
9797
allEmpty = allEmpty && !line.hasCell1();
9898
allEmpty = allEmpty && !line.hasCell2();
9999
allEmpty = allEmpty && !line.hasCell3();

api_benchmark/lib/benchmarks/index.dart

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import 'string_json.dart';
1616

1717
/// Creates the appropriate Benchmark instance for a protobuf.
1818
Benchmark createBenchmark(pb.Request r) {
19-
var type = allBenchmarks[r.id];
19+
final type = allBenchmarks[r.id];
2020
if (type == null) {
2121
throw ArgumentError('unknown benchmark: ${r.id.name}');
2222
}
@@ -36,8 +36,8 @@ final Map<pb.BenchmarkID, BenchmarkType> allBenchmarks = _makeTypeMap([
3636
]);
3737

3838
Map<pb.BenchmarkID, BenchmarkType> _makeTypeMap(List<BenchmarkType> types) {
39-
var out = <pb.BenchmarkID, BenchmarkType>{};
40-
for (var type in types) {
39+
final out = <pb.BenchmarkID, BenchmarkType>{};
40+
for (final type in types) {
4141
if (out.containsKey(type.id)) {
4242
throw 'already added: $type.id.name';
4343
}

api_benchmark/lib/benchmarks/int32_json.dart

+6-6
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class Int32Benchmark extends Benchmark {
2626

2727
@override
2828
void setup() {
29-
var grid = _makeGrid(width, height);
29+
final grid = _makeGrid(width, height);
3030
json = grid.writeToJson();
3131
lastFieldTag = getTagForColumn(pb.Line10(), width - 1);
3232
}
@@ -37,12 +37,12 @@ class Int32Benchmark extends Benchmark {
3737
// 2 3 4 5
3838
static pb.Grid10 _makeGrid(int width, int height) {
3939
if (width > 10) throw ArgumentError('width out of range: $width');
40-
var grid = pb.Grid10();
40+
final grid = pb.Grid10();
4141

4242
for (var y = 0; y < height; y++) {
43-
var line = pb.Line10();
43+
final line = pb.Line10();
4444
for (var x = 0; x < width; x++) {
45-
var tag = getTagForColumn(line, x)!;
45+
final tag = getTagForColumn(line, x)!;
4646
line.setField(tag, x + y);
4747
}
4848
grid.lines.add(line);
@@ -57,8 +57,8 @@ class Int32Benchmark extends Benchmark {
5757

5858
@override
5959
void run() {
60-
var grid = pb.Grid10.fromJson(json);
61-
var actual = grid.lines[height - 1].getField(lastFieldTag!);
60+
final grid = pb.Grid10.fromJson(json);
61+
final actual = grid.lines[height - 1].getField(lastFieldTag!);
6262
if (actual != width + height - 2) throw 'failed; got $actual';
6363
}
6464

api_benchmark/lib/benchmarks/int64_json.dart

+6-6
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class Int64Benchmark extends Benchmark {
2828

2929
@override
3030
void setup() {
31-
var grid = _makeGrid(width, height);
31+
final grid = _makeGrid(width, height);
3232
json = grid.writeToJson();
3333
lastFieldTag = getTagForColumn(pb.Line10(), width - 1);
3434
}
@@ -39,12 +39,12 @@ class Int64Benchmark extends Benchmark {
3939
// 2 3 4 5
4040
static pb.Grid10 _makeGrid(int width, int height) {
4141
if (width > 10) throw ArgumentError('width out of range: $width');
42-
var grid = pb.Grid10();
42+
final grid = pb.Grid10();
4343

4444
for (var y = 0; y < height; y++) {
45-
var line = pb.Line10();
45+
final line = pb.Line10();
4646
for (var x = 0; x < width; x++) {
47-
var tag = getTagForColumn(line, x)!;
47+
final tag = getTagForColumn(line, x)!;
4848
line.setField(tag, Int64(x + y));
4949
}
5050
grid.lines.add(line);
@@ -59,8 +59,8 @@ class Int64Benchmark extends Benchmark {
5959

6060
@override
6161
void run() {
62-
var grid = pb.Grid10.fromJson(json);
63-
var actual = grid.lines[height - 1].getField(lastFieldTag!);
62+
final grid = pb.Grid10.fromJson(json);
63+
final actual = grid.lines[height - 1].getField(lastFieldTag!);
6464
if (actual != width + height - 2) throw 'failed; got $actual';
6565
}
6666

api_benchmark/lib/benchmarks/repeated_int32_json.dart

+5-5
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class RepeatedInt32Benchmark extends Benchmark {
2525

2626
@override
2727
void setup() {
28-
var grid = _makeGrid(width, height);
28+
final grid = _makeGrid(width, height);
2929
json = grid.writeToJson();
3030
}
3131

@@ -34,10 +34,10 @@ class RepeatedInt32Benchmark extends Benchmark {
3434
// 1 2 3 4
3535
// 2 3 4 5
3636
static pb.Grid _makeGrid(int width, int height) {
37-
var grid = pb.Grid();
37+
final grid = pb.Grid();
3838

3939
for (var y = 0; y < height; y++) {
40-
var line = pb.Line();
40+
final line = pb.Line();
4141
for (var x = 0; x < width; x++) {
4242
line.cells.add(x + y);
4343
}
@@ -49,8 +49,8 @@ class RepeatedInt32Benchmark extends Benchmark {
4949

5050
@override
5151
void run() {
52-
var grid = pb.Grid.fromJson(json);
53-
var actual = grid.lines[height - 1].cells[width - 1];
52+
final grid = pb.Grid.fromJson(json);
53+
final actual = grid.lines[height - 1].cells[width - 1];
5454
if (actual != width + height - 2) throw 'failed; got $actual';
5555
}
5656

api_benchmark/lib/benchmarks/repeated_int64_json.dart

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class RepeatedInt64Benchmark extends Benchmark {
2727

2828
@override
2929
void setup() {
30-
var grid = _makeGrid(width, height);
30+
final grid = _makeGrid(width, height);
3131
json = grid.writeToJson();
3232
}
3333

@@ -36,10 +36,10 @@ class RepeatedInt64Benchmark extends Benchmark {
3636
// 1 2 3 4
3737
// 2 3 4 5
3838
static pb.Grid _makeGrid(int width, int height) {
39-
var grid = pb.Grid();
39+
final grid = pb.Grid();
4040

4141
for (var y = 0; y < height; y++) {
42-
var line = pb.Line();
42+
final line = pb.Line();
4343
for (var x = 0; x < width; x++) {
4444
line.cells.add(Int64(x + y));
4545
}
@@ -51,8 +51,8 @@ class RepeatedInt64Benchmark extends Benchmark {
5151

5252
@override
5353
void run() {
54-
var grid = pb.Grid.fromJson(json);
55-
var actual = grid.lines[height - 1].cells[width - 1];
54+
final grid = pb.Grid.fromJson(json);
55+
final actual = grid.lines[height - 1].cells[width - 1];
5656
if (actual != width + height - 2) throw 'failed; got $actual';
5757
}
5858

api_benchmark/lib/benchmarks/repeated_string_json.dart

+7-7
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class RepeatedStringBenchmark extends Benchmark {
2929

3030
@override
3131
void setup() {
32-
var grid = _makeGrid(width, height, stringSize);
32+
final grid = _makeGrid(width, height, stringSize);
3333
json = grid.writeToJson();
3434
}
3535

@@ -39,14 +39,14 @@ class RepeatedStringBenchmark extends Benchmark {
3939
// "23" "34" "45" "56"
4040
static pb.Grid _makeGrid(int width, int height, int stringSize) {
4141
if (width > 10) throw ArgumentError('width out of range: $width');
42-
var grid = pb.Grid();
42+
final grid = pb.Grid();
4343

44-
var zero = '0'.codeUnits[0];
44+
final zero = '0'.codeUnits[0];
4545

4646
for (var y = 0; y < height; y++) {
47-
var line = pb.Line();
47+
final line = pb.Line();
4848
for (var x = 0; x < width; x++) {
49-
var charCodes = <int>[];
49+
final charCodes = <int>[];
5050
for (var i = 0; i < stringSize; i++) {
5151
charCodes.add(zero + ((x + y + i) % 10));
5252
}
@@ -59,8 +59,8 @@ class RepeatedStringBenchmark extends Benchmark {
5959

6060
@override
6161
void run() {
62-
var grid = pb.Grid.fromJson(json);
63-
var actual = grid.lines[height - 1].cells[width - 1];
62+
final grid = pb.Grid.fromJson(json);
63+
final actual = grid.lines[height - 1].cells[width - 1];
6464
if (actual.length != stringSize) throw 'failed; got $actual';
6565
}
6666

0 commit comments

Comments
 (0)