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

Unified Diff: dart/tests/compiler/dart2js/diagnose_ambiguous_test.dart

Issue 20742002: Clean up error handling. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Added documentation guide lines. Created 7 years, 5 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
Index: dart/tests/compiler/dart2js/diagnose_ambiguous_test.dart
diff --git a/dart/tests/compiler/dart2js/diagnose_ambiguous_test.dart b/dart/tests/compiler/dart2js/diagnose_ambiguous_test.dart
index 39f9d8ffb6d2427964e35502cdf671d744a7ecc8..70d2fb48aec82512ec8b0562761a727e3edb3d5a 100644
--- a/dart/tests/compiler/dart2js/diagnose_ambiguous_test.dart
+++ b/dart/tests/compiler/dart2js/diagnose_ambiguous_test.dart
@@ -48,9 +48,9 @@ main() {
'memory:main.dart:23:46:Info: "class(Fisk)" is imported here.:info',
'memory:main.dart:23:46:Info: "function(fisk)" is imported here.:info',
'memory:main.dart:23:46:Info: "function(hest)" is imported here.:info',
- 'memory:main.dart:59:63:Warning: duplicate import of Fisk:warning',
- 'memory:main.dart:76:80:duplicate import of fisk:error',
- 'memory:main.dart:86:90:duplicate import of hest:error'
+ 'memory:main.dart:59:63:Warning: Duplicate import of "Fisk".:warning',
+ 'memory:main.dart:76:80:Error: Duplicate import of "fisk".:error',
+ 'memory:main.dart:86:90:Error: Duplicate import of "hest".:error'
];
Expect.listEquals(expected, diagnostics);
Expect.isTrue(compiler.compilationFailed);

Powered by Google App Engine
This is Rietveld 408576698