Skip to content

Commit b39d019

Browse files
stereotype441Commit Queue
authored andcommitted
Regenerate lint_codes.g.dart.
There was a race between https://dart-review.googlesource.com/c/sdk/+/446140 and https://dart-review.googlesource.com/c/sdk/+/445783, resulting in `lint_codes.g.dart` being out of date. This CL re-generates the file. Change-Id: I6a6a6964dc488ce9338584759ced3bde673f3bb3 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/446182 Reviewed-by: Konstantin Shcheglov <scheglov@google.com> Reviewed-by: Samuel Rawlins <srawlins@google.com> Auto-Submit: Paul Berry <paulberry@google.com> Commit-Queue: Samuel Rawlins <srawlins@google.com>
1 parent febbe82 commit b39d019

File tree

1 file changed

+15
-13
lines changed

1 file changed

+15
-13
lines changed

pkg/linter/lib/src/lint_codes.g.dart

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -124,24 +124,26 @@ class LinterLintCode extends LintCode {
124124
);
125125

126126
/// No parameters.
127-
static const LinterLintCode analyzerElementModelTrackingBad = LinterLintCode(
128-
LintNames.analyzer_element_model_tracking_bad,
129-
"Bad tracking annotation for this member.",
130-
);
131-
132-
/// No parameters.
133-
static const LinterLintCode analyzerElementModelTrackingMoreThanOne =
134-
LinterLintCode(
135-
LintNames.analyzer_element_model_tracking_more_than_one,
136-
"There can be only one tracking annotation.",
127+
static const LinterLintWithoutArguments analyzerElementModelTrackingBad =
128+
LinterLintWithoutArguments(
129+
LintNames.analyzer_element_model_tracking_bad,
130+
"Bad tracking annotation for this member.",
137131
);
138132

139133
/// No parameters.
140-
static const LinterLintCode analyzerElementModelTrackingZero = LinterLintCode(
141-
LintNames.analyzer_element_model_tracking_zero,
142-
"No required tracking annotation.",
134+
static const LinterLintWithoutArguments
135+
analyzerElementModelTrackingMoreThanOne = LinterLintWithoutArguments(
136+
LintNames.analyzer_element_model_tracking_more_than_one,
137+
"There can be only one tracking annotation.",
143138
);
144139

140+
/// No parameters.
141+
static const LinterLintWithoutArguments analyzerElementModelTrackingZero =
142+
LinterLintWithoutArguments(
143+
LintNames.analyzer_element_model_tracking_zero,
144+
"No required tracking annotation.",
145+
);
146+
145147
/// Lint issued if a file in the analyzer public API contains a `part`
146148
/// directive that points to a file that's not in the analyzer public API.
147149
///

0 commit comments

Comments
 (0)