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

Side by Side Diff: tests/lib/async/zone_debug_test.dart

Issue 25027004: Add second argument to Future error handlers. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Upload Created 7 years, 2 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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(
Lasse Reichstein Nielsen 2013/10/04 09:17:39 void return type?
floitsch 2013/10/05 17:22:59 The return-type is actually specified as being dyn
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698