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

Unified Diff: pkg/analyzer/lib/src/util/utilities_timing.dart

Issue 725143004: Format and sort analyzer and analysis_server packages. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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 | « pkg/analyzer/lib/src/task/task_dart.dart ('k') | pkg/analyzer/test/enum_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/util/utilities_timing.dart
diff --git a/pkg/analyzer/lib/src/util/utilities_timing.dart b/pkg/analyzer/lib/src/util/utilities_timing.dart
index 4d07fcd9bbf48dbf4bce8aee067d03ddbf3af0ee..7b8e122e2a97fdc46b4927607fa91f2f28eadd71 100644
--- a/pkg/analyzer/lib/src/util/utilities_timing.dart
+++ b/pkg/analyzer/lib/src/util/utilities_timing.dart
@@ -26,14 +26,14 @@ class CountedStopwatch extends Stopwatch {
int get averageMilliseconds => elapsedMilliseconds ~/ stopCount;
@override
- void stop() {
- super.stop();
- stopCount++;
- }
-
- @override
void reset() {
super.reset();
stopCount = 0;
}
-}
+
+ @override
+ void stop() {
+ super.stop();
+ stopCount++;
+ }
+}
« no previous file with comments | « pkg/analyzer/lib/src/task/task_dart.dart ('k') | pkg/analyzer/test/enum_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698