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

Side by Side Diff: pkg/testing/lib/src/test_dart/status_file_parser.dart

Issue 2791993002: Fix dart2js warnings and add test to ensure it stays clean. (Closed)
Patch Set: Address comments and fix duplicated library names. Created 3 years, 8 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library status_file_parser; 5 library test_dart_copy.status_file_parser;
6 6
7 import "dart:async"; 7 import "dart:async";
8 import "dart:convert" show LineSplitter, UTF8; 8 import "dart:convert" show LineSplitter, UTF8;
9 import "dart:io"; 9 import "dart:io";
10 10
11 import "path.dart"; 11 import "path.dart";
12 import "status_expression.dart"; 12 import "status_expression.dart";
13 13
14 import '../expectation.dart' show Expectation, ExpectationSet; 14 import '../expectation.dart' show Expectation, ExpectationSet;
15 15
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 } 241 }
242 regExps[i] = regExp; 242 regExps[i] = regExp;
243 } 243 }
244 _keyToRegExps[key] = regExps; 244 _keyToRegExps[key] = regExps;
245 }); 245 });
246 246
247 _regExpCache = null; 247 _regExpCache = null;
248 _preprocessed = true; 248 _preprocessed = true;
249 } 249 }
250 } 250 }
OLDNEW
« no previous file with comments | « pkg/testing/lib/src/test_dart/status_expression.dart ('k') | tests/compiler/dart2js/analyze_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698