| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 part of dart.async; | 5 part of dart.async; |
| 6 | 6 |
| 7 _invokeErrorHandler(Function errorHandler, | 7 _invokeErrorHandler( |
| 8 Object error, StackTrace stackTrace) { | 8 Function errorHandler, Object error, StackTrace stackTrace) { |
| 9 if (errorHandler is ZoneBinaryCallback) { | 9 if (errorHandler is ZoneBinaryCallback) { |
| 10 return errorHandler(error, stackTrace); | 10 return errorHandler(error, stackTrace); |
| 11 } else { | 11 } else { |
| 12 ZoneUnaryCallback unaryErrorHandler = errorHandler; | 12 ZoneUnaryCallback unaryErrorHandler = errorHandler; |
| 13 return unaryErrorHandler(error); | 13 return unaryErrorHandler(error); |
| 14 } | 14 } |
| 15 } | 15 } |
| 16 | 16 |
| 17 Function _registerErrorHandler<R>(Function errorHandler, Zone zone) { | 17 Function _registerErrorHandler<R>(Function errorHandler, Zone zone) { |
| 18 if (errorHandler is ZoneBinaryCallback) { | 18 if (errorHandler is ZoneBinaryCallback) { |
| (...skipping 19 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 String toString() { | 39 String toString() { |
| 40 String result = "Uncaught Error: ${error}"; | 40 String result = "Uncaught Error: ${error}"; |
| 41 | 41 |
| 42 if (stackTrace != null) { | 42 if (stackTrace != null) { |
| 43 result += "\nStack Trace:\n$stackTrace"; | 43 result += "\nStack Trace:\n$stackTrace"; |
| 44 } | 44 } |
| 45 return result; | 45 return result; |
| 46 } | 46 } |
| 47 } | 47 } |
| OLD | NEW |