| 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('timer_cancel2_test'); |
| 6 |
| 5 #import("dart:isolate"); | 7 #import("dart:isolate"); |
| 6 | 8 |
| 7 // Test that a timeout handler can cancel itself. | 9 // Test that a timeout handler can cancel itself. |
| 8 class TimerCancel2Test { | 10 class TimerCancel2Test { |
| 9 static void testSelfCancel() { | 11 static void testSelfCancel() { |
| 10 var cancelTimer; | 12 var cancelTimer; |
| 11 | 13 |
| 12 void cancelHandler(Timer timer) { | 14 void cancelHandler(Timer timer) { |
| 13 cancelTimer.cancel(); | 15 cancelTimer.cancel(); |
| 14 } | 16 } |
| 15 | 17 |
| 16 cancelTimer = new Timer.repeating(1, cancelHandler); | 18 cancelTimer = new Timer.repeating(1, cancelHandler); |
| 17 } | 19 } |
| 18 | 20 |
| 19 static void testMain() { | 21 static void testMain() { |
| 20 testSelfCancel(); | 22 testSelfCancel(); |
| 21 } | 23 } |
| 22 } | 24 } |
| 23 | 25 |
| 24 main() { | 26 main() { |
| 25 TimerCancel2Test.testMain(); | 27 TimerCancel2Test.testMain(); |
| 26 } | 28 } |
| OLD | NEW |