| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 part of dart.core; | 5 part of dart.core; |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * A simple stopwatch interface to measure elapsed time. | 8 * A simple stopwatch interface to measure elapsed time. |
| 9 */ | 9 */ |
| 10 class Stopwatch { | 10 class Stopwatch { |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 return (elapsedTicks * 1000000) ~/ frequency; | 104 return (elapsedTicks * 1000000) ~/ frequency; |
| 105 } | 105 } |
| 106 | 106 |
| 107 /** | 107 /** |
| 108 * The [elapsedTicks] counter converted to milliseconds. | 108 * The [elapsedTicks] counter converted to milliseconds. |
| 109 */ | 109 */ |
| 110 int get elapsedMilliseconds { | 110 int get elapsedMilliseconds { |
| 111 return (elapsedTicks * 1000) ~/ frequency; | 111 return (elapsedTicks * 1000) ~/ frequency; |
| 112 } | 112 } |
| 113 | 113 |
| 114 | |
| 115 /** | 114 /** |
| 116 * Whether the [StopWatch] is currently running. | 115 * Whether the [StopWatch] is currently running. |
| 117 */ | 116 */ |
| 118 bool get isRunning => _stop == null; | 117 bool get isRunning => _stop == null; |
| 119 | 118 |
| 120 /** | 119 /** |
| 121 * Initializes the time-measuring system. *Must* initialize the [_frequency] | 120 * Initializes the time-measuring system. *Must* initialize the [_frequency] |
| 122 * variable. | 121 * variable. |
| 123 */ | 122 */ |
| 124 external static void _initTicker(); | 123 external static void _initTicker(); |
| 125 external static int _now(); | 124 external static int _now(); |
| 126 } | 125 } |
| OLD | NEW |