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>
This commit is contained in:
Paul Berry
2025-08-20 18:29:39 -07:00
committed by Commit Queue
parent febbe8296a
commit b39d019e5f
+15 -13
View File
@@ -124,24 +124,26 @@ class LinterLintCode extends LintCode {
);
/// No parameters.
static const LinterLintCode analyzerElementModelTrackingBad = LinterLintCode(
LintNames.analyzer_element_model_tracking_bad,
"Bad tracking annotation for this member.",
);
/// No parameters.
static const LinterLintCode analyzerElementModelTrackingMoreThanOne =
LinterLintCode(
LintNames.analyzer_element_model_tracking_more_than_one,
"There can be only one tracking annotation.",
static const LinterLintWithoutArguments analyzerElementModelTrackingBad =
LinterLintWithoutArguments(
LintNames.analyzer_element_model_tracking_bad,
"Bad tracking annotation for this member.",
);
/// No parameters.
static const LinterLintCode analyzerElementModelTrackingZero = LinterLintCode(
LintNames.analyzer_element_model_tracking_zero,
"No required tracking annotation.",
static const LinterLintWithoutArguments
analyzerElementModelTrackingMoreThanOne = LinterLintWithoutArguments(
LintNames.analyzer_element_model_tracking_more_than_one,
"There can be only one tracking annotation.",
);
/// No parameters.
static const LinterLintWithoutArguments analyzerElementModelTrackingZero =
LinterLintWithoutArguments(
LintNames.analyzer_element_model_tracking_zero,
"No required tracking annotation.",
);
/// Lint issued if a file in the analyzer public API contains a `part`
/// directive that points to a file that's not in the analyzer public API.
///