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

Unified Diff: runtime/tests/vm/dart/isolate_unhandled_exception_test2.dart

Issue 16154017: Rename RuntimeError to CyclicIntializationError, as per spec. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix bad merge in js_helper.dart Created 7 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
Index: runtime/tests/vm/dart/isolate_unhandled_exception_test2.dart
diff --git a/runtime/tests/vm/dart/isolate_unhandled_exception_test2.dart b/runtime/tests/vm/dart/isolate_unhandled_exception_test2.dart
index 6fc0a1113d786acda8d7952a23d0c30b0c2069a7..7fe1c86de2da4fee1c54731dc75ae956e369bc07 100644
--- a/runtime/tests/vm/dart/isolate_unhandled_exception_test2.dart
+++ b/runtime/tests/vm/dart/isolate_unhandled_exception_test2.dart
@@ -19,7 +19,7 @@ void entry() {
port.receive((message, replyTo) {
if (message == 'throw exception') {
replyTo.call('throwing exception');
- throw new RuntimeError('ignore this exception');
+ throw new UnsupportedError('ignore this exception');
}
replyTo.call('hello');
port.close();

Powered by Google App Engine
This is Rietveld 408576698