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]. |