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

Unified Diff: runtime/observatory/lib/src/models/objects/error.dart

Issue 2345023003: Use dartfmt on Observatory code (Closed)
Patch Set: merge Created 4 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/observatory/lib/src/models/objects/error.dart
diff --git a/runtime/observatory/lib/src/models/objects/error.dart b/runtime/observatory/lib/src/models/objects/error.dart
index 06c6e612e6cec0e92bc3ab49ce6ca431c9f7a35a..d59ab6c001085966bdb9a5bc3f0eb3ddc9c29927 100644
--- a/runtime/observatory/lib/src/models/objects/error.dart
+++ b/runtime/observatory/lib/src/models/objects/error.dart
@@ -7,11 +7,14 @@ part of models;
enum ErrorKind {
/// The isolate has encountered an unhandled Dart exception.
unhandledException,
+
/// The isolate has encountered a Dart language error in the program.
languageError,
+
/// The isolate has encounted an internal error. These errors should be
/// reported as bugs.
internalError,
+
/// The isolate has been terminated by an external source.
terminationError
}
@@ -21,6 +24,4 @@ abstract class ErrorRef extends ObjectRef {
String get message;
}
-abstract class Error extends Object implements ErrorRef {
-
-}
+abstract class Error extends Object implements ErrorRef {}
« no previous file with comments | « runtime/observatory/lib/src/models/objects/code.dart ('k') | runtime/observatory/lib/src/models/objects/event.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698