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

Unified Diff: tests/language/stack_overflow_test.dart

Issue 11227021: Change StackOverflowException to be an Error. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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/co19/co19-runtime.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/stack_overflow_test.dart
diff --git a/tests/language/stack_overflow_test.dart b/tests/language/stack_overflow_test.dart
index 83909f99bfa344d44376bdcdf22464a38ea501c3..a8e400f9bf7ff33a767b3d55ee1dcfafa93373a5 100644
--- a/tests/language/stack_overflow_test.dart
+++ b/tests/language/stack_overflow_test.dart
@@ -13,7 +13,7 @@ class StackOverflowTest {
bool exceptionCaught = false;
try {
curseTheRecurse(1, 2, 3);
- } on StackOverflowException catch (e) {
+ } on StackOverflowError catch (e) {
exceptionCaught = true;
}
Expect.equals(true, exceptionCaught);
« no previous file with comments | « tests/co19/co19-runtime.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698