| 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 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 Loading... |
| 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 } |
| OLD | NEW |