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

Unified Diff: tests/lib/async/run_zoned9_test.dart

Issue 2963743002: Revert "Make Zone API strong mode clean." (Closed)
Patch Set: Created 3 years, 6 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
« no previous file with comments | « tests/lib/async/run_zoned6_test.dart ('k') | tests/lib/async/stream_listen_zone_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/async/run_zoned9_test.dart
diff --git a/tests/lib/async/run_zoned9_test.dart b/tests/lib/async/run_zoned9_test.dart
index 1ab97953cdb4bcb3c84c068a27bdc5d755643304..67e389425b24d82e1ef83cd28b9d3c9d2efcde89 100644
--- a/tests/lib/async/run_zoned9_test.dart
+++ b/tests/lib/async/run_zoned9_test.dart
@@ -24,11 +24,13 @@ main() {
Expect.equals(0, e);
Expect.isTrue(sawInnerHandler);
// If we are waiting for an error, don't asyncEnd, but let it time out.
- throw e; //# 01: ok
+ if (false) //# 01: runtime error
asyncEnd();
+ throw e; // //# 01: continued
});
} catch (e) {
- asyncEnd(); return; //# 01: continued
+ // We should never see an error here.
+ if (false) // //# 01: continued
rethrow;
}
}
« no previous file with comments | « tests/lib/async/run_zoned6_test.dart ('k') | tests/lib/async/stream_listen_zone_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698