Chromium Code Reviews| Index: tests/compiler/dart2js/analyze_helper.dart |
| diff --git a/tests/compiler/dart2js/analyze_helper.dart b/tests/compiler/dart2js/analyze_helper.dart |
| index 779f389a547892c8f086793b9d83e5c0d711fa34..6c83521dcde9b57068feda151b1e0d2ac13d262d 100644 |
| --- a/tests/compiler/dart2js/analyze_helper.dart |
| +++ b/tests/compiler/dart2js/analyze_helper.dart |
| @@ -39,18 +39,19 @@ class CollectingDiagnosticHandler extends FormattingDiagnosticHandler { |
| bool lastWasWhitelisted = false; |
| bool showWhitelisted = true; |
| - Map<String, Map<dynamic /*String|MessageKind*/, int>> whiteListMap = |
| - new Map<String, Map<dynamic /*String|MessageKind*/, int>>(); |
| + Map<String, Map<dynamic /* String|MessageKind */, int>> whiteListMap = |
|
Emily Fortuna
2017/06/15 18:33:10
who knew strong mode had whitespacing preferences?
ahe
2017/06/16 07:26:46
These whitespace changes are important :-O
See ht
|
| + new Map<String, Map<dynamic /* String|MessageKind */, int>>(); |
| List<MessageKind> skipList; |
| List<CollectedMessage> collectedMessages = <CollectedMessage>[]; |
| CollectingDiagnosticHandler( |
| - Map<String, List/*<String|MessageKind>*/ > whiteList, |
| + Map<String, List /* <String|MessageKind> */ > whiteList, |
| this.skipList, |
| SourceFileProvider provider) |
| : super(provider) { |
| - whiteList.forEach((String file, List/*<String|MessageKind>*/ messageParts) { |
| - var useMap = new Map<dynamic /*String|MessageKind*/, int>(); |
| + whiteList |
| + .forEach((String file, List /* <String|MessageKind> */ messageParts) { |
| + var useMap = new Map<dynamic /* String|MessageKind */, int>(); |
| for (var messagePart in messageParts) { |
| useMap[messagePart] = 0; |
| } |
| @@ -202,7 +203,7 @@ enum AnalysisMode { |
| /// Messages can be generally allowed using [skipList] or on a per-file basis |
| /// using [whiteList]. |
| Future analyze( |
| - List<Uri> uriList, Map<String, List/*<String|MessageKind>*/ > whiteList, |
| + List<Uri> uriList, Map<String, List /* <String|MessageKind> */ > whiteList, |
| {AnalysisMode mode: AnalysisMode.ALL, |
| CheckResults checkResults, |
| List<String> options: const <String>[], |