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 final Expando _stackTraceExpando = new Expando("asynchronous error"); | 7 final Expando _stackTraceExpando = new Expando("asynchronous error"); |
8 | 8 |
9 void _attachStackTrace(o, st) { | 9 void _attachStackTrace(o, st) { |
10 if (o == null || o is bool || o is num || o is String) return; | 10 if (o == null || o is bool || o is num || o is String) return; |
11 _stackTraceExpando[o] = st; | 11 _stackTraceExpando[o] = st; |
12 } | 12 } |
13 | 13 |
14 /** | 14 /** |
15 * *This is an experimental API.* | 15 * *This is an experimental API.* |
16 * | 16 * |
17 * Get the [StackTrace] attached to [o]. | 17 * Get the [StackTrace] attached to [o]. |
18 * | 18 * |
19 * If object [o] was thrown and caught in a dart:async method, a [StackTrace] | 19 * If object [o] was thrown and caught in a dart:async method, a [StackTrace] |
20 * object was attached to it. Use [getAttachedStackTrace] to get that object. | 20 * object was attached to it. Use [getAttachedStackTrace] to get that object. |
21 * | 21 * |
22 * Returns [null] if no [StackTrace] was attached. | 22 * Returns [null] if no [StackTrace] was attached. |
23 */ | 23 */ |
24 getAttachedStackTrace(o) { | 24 getAttachedStackTrace(o) { |
25 if (o == null || o is bool || o is num || o is String) return null; | 25 if (o == null || o is bool || o is num || o is String) return null; |
26 return _stackTraceExpando[o]; | 26 return _stackTraceExpando[o]; |
27 } | 27 } |
28 | |
29 // TODO(floitsch): should we make this an Error class? Probably depends, if we | |
30 // want to make the class public. | |
Lasse Reichstein Nielsen
2013/10/04 09:17:39
We can implement Error without problems. We have t
floitsch
2013/10/05 17:22:59
Done.
| |
31 class _AsyncError { | |
32 final error; | |
33 final StackTrace stackTrace; | |
34 | |
35 _AsyncError(this.error, this.stackTrace); | |
36 } | |
37 | |
38 class _UncaughtAsyncError extends _AsyncError { | |
39 _UncaughtAsyncError(error, StackTrace stackTrace) : super(error, stackTrace); | |
40 | |
41 String toString() { | |
42 String result = "Uncaught Error: ${error}"; | |
43 var trace = stackTrace; | |
44 if (trace == null) trace = getAttachedStackTrace(error); | |
Lasse Reichstein Nielsen
2013/10/04 09:17:39
This looks wrong to me. If anything, the attached
floitsch
2013/10/05 17:22:59
done.
| |
45 | |
46 // Clear the attached stack trace. | |
47 _attachStackTrace(error, null); | |
48 | |
49 if (trace != null) { | |
50 result += "\nStack Trace:\n$trace"; | |
51 } | |
52 return result; | |
53 } | |
54 } | |
OLD | NEW |