OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 import 'package:expect/expect.dart'; | 5 import 'package:expect/expect.dart'; |
6 import 'package:async_helper/async_helper.dart'; | 6 import 'package:async_helper/async_helper.dart'; |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 | 8 |
9 import 'dart:collection'; | 9 import 'dart:collection'; |
10 | 10 |
(...skipping 30 matching lines...) Expand all Loading... |
41 } | 41 } |
42 | 42 |
43 debugZoneRunUnary(Zone self, ZoneDelegate parent, Zone origin, f(arg), arg) { | 43 debugZoneRunUnary(Zone self, ZoneDelegate parent, Zone origin, f(arg), arg) { |
44 stackTrace++; | 44 stackTrace++; |
45 restoredStackTrace = []; | 45 restoredStackTrace = []; |
46 return parent.run1(origin, f, arg); | 46 return parent.run1(origin, f, arg); |
47 } | 47 } |
48 | 48 |
49 List expectedDebugTrace; | 49 List expectedDebugTrace; |
50 | 50 |
51 debugUncaughtHandler(Zone self, ZoneDelegate parent, Zone origin, error) { | 51 debugUncaughtHandler( |
| 52 Zone self, ZoneDelegate parent, Zone origin, error, StackTrace stackTrace) { |
52 events.add("handling uncaught error $error"); | 53 events.add("handling uncaught error $error"); |
53 Expect.listEquals(expectedDebugTrace, restoredStackTrace); | 54 Expect.listEquals(expectedDebugTrace, restoredStackTrace); |
54 // Suppress the error and don't propagate to parent. | 55 // Suppress the error and don't propagate to parent. |
55 } | 56 } |
56 | 57 |
57 const DEBUG_SPECIFICATION = const ZoneSpecification( | 58 const DEBUG_SPECIFICATION = const ZoneSpecification( |
58 registerCallback: debugZoneRegisterCallback, | 59 registerCallback: debugZoneRegisterCallback, |
59 registerUnaryCallback: debugZoneRegisterUnaryCallback, | 60 registerUnaryCallback: debugZoneRegisterUnaryCallback, |
60 run: debugZoneRun, | 61 run: debugZoneRun, |
61 runUnary: debugZoneRunUnary, | 62 runUnary: debugZoneRunUnary, |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 done.future.whenComplete(() { | 125 done.future.whenComplete(() { |
125 // We don't really care for the order. | 126 // We don't really care for the order. |
126 events.sort(); | 127 events.sort(); |
127 Expect.listEquals([ "handling uncaught error bar", | 128 Expect.listEquals([ "handling uncaught error bar", |
128 "handling uncaught error foo", | 129 "handling uncaught error foo", |
129 "handling uncaught error gee"], | 130 "handling uncaught error gee"], |
130 events); | 131 events); |
131 asyncEnd(); | 132 asyncEnd(); |
132 }); | 133 }); |
133 } | 134 } |
OLD | NEW |