Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1009)

Unified Diff: pkg/analyzer/lib/src/task/dart.dart

Issue 2933753002: Run the sorter to reduce code churn (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/analyzer/lib/src/lint/registry.dart ('k') | pkg/analyzer/lib/src/task/driver.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/task/dart.dart
diff --git a/pkg/analyzer/lib/src/task/dart.dart b/pkg/analyzer/lib/src/task/dart.dart
index 797d8f736aca11ba0e885d816076e67917ccae85..2b5ee327a4463238a80898be8b229d99197a8c79 100644
--- a/pkg/analyzer/lib/src/task/dart.dart
+++ b/pkg/analyzer/lib/src/task/dart.dart
@@ -3046,14 +3046,14 @@ class IgnoreInfo {
bool get hasIgnores => ignores.isNotEmpty || _ignoreForFileSet.isNotEmpty;
/**
- * Map of line numbers to associated ignored error codes.
+ * Iterable of error codes ignored for the whole file.
*/
- Map<int, Iterable<String>> get ignores => _ignoreMap;
+ Iterable<String> get ignoreForFiles => _ignoreForFileSet;
/**
- * Iterable of error codes ignored for the whole file.
+ * Map of line numbers to associated ignored error codes.
*/
- Iterable<String> get ignoreForFiles => _ignoreForFileSet;
+ Map<int, Iterable<String>> get ignores => _ignoreMap;
/**
* Ignore this [errorCode] at [line].
« no previous file with comments | « pkg/analyzer/lib/src/lint/registry.dart ('k') | pkg/analyzer/lib/src/task/driver.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698