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

Unified Diff: frog/tests/await/src/TryCatch8Test.dart

Issue 9006053: frog await: allow errors after the await within try-catch blocks. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: '' Created 9 years 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: frog/tests/await/src/TryCatch8Test.dart
diff --git a/frog/tests/await/src/TryCatch8Test.dart b/frog/tests/await/src/TryCatch8Test.dart
index 4959e506ce25d611946e2a891ced9e86239fbb44..e43df5633c33b895369c84197c8c9e3a101c021c 100644
--- a/frog/tests/await/src/TryCatch8Test.dart
+++ b/frog/tests/await/src/TryCatch8Test.dart
@@ -9,7 +9,7 @@
errorDuring() {
try {
- final t = await errorOf("my error");
+ final t = await errorOf("my error"); // needs normalization
return t;
} catch (e) {
Expect.equals("my error", e);

Powered by Google App Engine
This is Rietveld 408576698