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

Unified Diff: runtime/bin/vmservice/observatory/lib/src/service/object.dart

Issue 558853004: Preserve the contents of Dart strings with unmatched surrogate halfs by avoiding a UTF16 -> UTF8 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: sync and build Created 6 years, 3 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/bin/vmservice/observatory/lib/src/service/object.dart
diff --git a/runtime/bin/vmservice/observatory/lib/src/service/object.dart b/runtime/bin/vmservice/observatory/lib/src/service/object.dart
index 9a1e80cecb30dbc84e76a42b38b51ca2198dd8f0..a2037d336bb6e078fe500a9522861abdf0e77635 100644
--- a/runtime/bin/vmservice/observatory/lib/src/service/object.dart
+++ b/runtime/bin/vmservice/observatory/lib/src/service/object.dart
@@ -1295,6 +1295,8 @@ class ServiceException extends ServiceObject {
name = 'ServiceException $kind';
vmName = name;
}
+
+ String toString() => 'ServiceException($message)';
}
/// A [ServiceEvent] is an asynchronous event notification from the vm.

Powered by Google App Engine
This is Rietveld 408576698