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

Unified Diff: tests/html/indexeddb_1_test.dart

Issue 11369243: Make Exception a class, not an interface, and remove the const constructor. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated. Moved safeToString to Error. Created 8 years, 1 month 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 | « tests/corelib/safe_to_string_test.dart ('k') | tests/html/indexeddb_2_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/indexeddb_1_test.dart
diff --git a/tests/html/indexeddb_1_test.dart b/tests/html/indexeddb_1_test.dart
index d55494c2e00f792fc7168316df19b03fb7a17d60..8eda6c4316617988ff71759e766b20dbace6acf2 100644
--- a/tests/html/indexeddb_1_test.dart
+++ b/tests/html/indexeddb_1_test.dart
@@ -15,7 +15,7 @@ testReadWrite(key, value, matcher,
fail(e) {
guardAsync(() {
- throw const Exception('IndexedDB failure');
+ throw new Exception('IndexedDB failure');
});
}
@@ -91,7 +91,7 @@ testReadWriteTyped(key, value, matcher,
fail(e) {
guardAsync(() {
- throw const Exception('IndexedDB failure');
+ throw new Exception('IndexedDB failure');
});
}
« no previous file with comments | « tests/corelib/safe_to_string_test.dart ('k') | tests/html/indexeddb_2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698