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

Side by Side Diff: tests/lib_2/async/event_helper.dart

Issue 2999943002: Migrated test block 168 to Dart 2.0. (Closed)
Patch Set: Fixed package:test crash related issues, addressed Bob's comments. Created 3 years, 4 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
OLDNEW
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 library event_helper; 5 library event_helper;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 abstract class Event { 9 abstract class Event {
10 void replay(EventSink sink); 10 void replay(EventSink sink);
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 void resume() { 175 void resume() {
176 if (trace) print("Events#$hashCode: resume"); 176 if (trace) print("Events#$hashCode: resume");
177 subscription.resume(); 177 subscription.resume();
178 } 178 }
179 179
180 void onDone(void action()) { 180 void onDone(void action()) {
181 if (trace) print("Events#$hashCode: onDone"); 181 if (trace) print("Events#$hashCode: onDone");
182 super.onDone(action); 182 super.onDone(action);
183 } 183 }
184 } 184 }
OLDNEW
« no previous file with comments | « tests/lib_2/async/dart2js_uncaught_error_test.dart ('k') | tests/lib_2/async/first_regression_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698