| Index: runtime/observatory/lib/src/service/object.dart
|
| diff --git a/runtime/observatory/lib/src/service/object.dart b/runtime/observatory/lib/src/service/object.dart
|
| index bc21be8ca177a58e2db11295e96751e0c35d21cd..525b1b7d1402b7e3ef217b6bb521bf87f984b884 100644
|
| --- a/runtime/observatory/lib/src/service/object.dart
|
| +++ b/runtime/observatory/lib/src/service/object.dart
|
| @@ -1855,10 +1855,10 @@ class ServiceMap extends ServiceObject implements ObservableMap {
|
|
|
| M.ErrorKind stringToErrorKind(String value) {
|
| switch(value) {
|
| - case 'UnhandledException': return M.ErrorKind.UnhandledException;
|
| - case 'LanguageError': return M.ErrorKind.UnhandledException;
|
| - case 'InternalError': return M.ErrorKind.InternalError;
|
| - case 'TerminationError': return M.ErrorKind.TerminationError;
|
| + case 'UnhandledException': return M.ErrorKind.unhandledException;
|
| + case 'LanguageError': return M.ErrorKind.unhandledException;
|
| + case 'InternalError': return M.ErrorKind.internalError;
|
| + case 'TerminationError': return M.ErrorKind.terminationError;
|
| }
|
| Logger.root.severe('Unrecognized error kind: $value');
|
| throw new FallThroughError();
|
|
|