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

Unified Diff: tool/input_sdk/lib/core/stopwatch.dart

Issue 1944413006: Updates for core/{pattern,regexp,stopwatch,duration}.dart (Closed) Base URL: https://github.com/dart-lang/dev_compiler@master
Patch Set: Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tool/input_sdk/lib/core/regexp.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tool/input_sdk/lib/core/stopwatch.dart
diff --git a/tool/input_sdk/lib/core/stopwatch.dart b/tool/input_sdk/lib/core/stopwatch.dart
index 15cd994a913e760a1e2d5a76812f77b572e7af67..e923083a7d174b7d6e611bec9562be51f6579684 100644
--- a/tool/input_sdk/lib/core/stopwatch.dart
+++ b/tool/input_sdk/lib/core/stopwatch.dart
@@ -18,8 +18,8 @@ class Stopwatch {
// If _start is null, then the [Stopwatch] has not been started yet.
// If _stop is null, then the [Stopwatch] has not been stopped yet,
// or is running.
- num _start;
- num _stop;
+ int _start;
+ int _stop;
/**
* Creates a [Stopwatch] in stopped state with a zero elapsed count.
« no previous file with comments | « tool/input_sdk/lib/core/regexp.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698