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

Unified Diff: pkg/analyzer_experimental/lib/src/generated/utilities_general.dart

Issue 45573002: Rename analyzer_experimental to analyzer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Tweaks before publishing. Created 7 years, 2 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
Index: pkg/analyzer_experimental/lib/src/generated/utilities_general.dart
diff --git a/pkg/analyzer_experimental/lib/src/generated/utilities_general.dart b/pkg/analyzer_experimental/lib/src/generated/utilities_general.dart
deleted file mode 100644
index 8175055af1b30334f472e817ff43585971863b47..0000000000000000000000000000000000000000
--- a/pkg/analyzer_experimental/lib/src/generated/utilities_general.dart
+++ /dev/null
@@ -1,34 +0,0 @@
-// This code was auto-generated, is not intended to be edited, and is subject to
-// significant change. Please see the README file for more information.
-library engine.utilities.general;
-import 'java_core.dart';
-/**
- * Helper for measuring how much time is spent doing some operation.
- */
-class TimeCounter {
- int result = 0;
-
- /**
- * Starts counting time.
- *
- * @return the [TimeCounterHandle] that should be used to stop counting.
- */
- TimeCounter_TimeCounterHandle start() => new TimeCounter_TimeCounterHandle(this);
-}
-/**
- * The handle object that should be used to stop and update counter.
- */
-class TimeCounter_TimeCounterHandle {
- final TimeCounter TimeCounter_this;
- int _startTime = JavaSystem.currentTimeMillis();
- TimeCounter_TimeCounterHandle(this.TimeCounter_this);
-
- /**
- * Stops counting time and updates counter.
- */
- void stop() {
- {
- TimeCounter_this.result += JavaSystem.currentTimeMillis() - _startTime;
- }
- }
-}

Powered by Google App Engine
This is Rietveld 408576698