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

Unified Diff: pkg/analyzer-experimental/lib/src/generated/instrumentation.dart

Issue 12253009: Fresh drop of analyzer-experimental. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 10 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/instrumentation.dart
===================================================================
--- pkg/analyzer-experimental/lib/src/generated/instrumentation.dart (revision 18469)
+++ pkg/analyzer-experimental/lib/src/generated/instrumentation.dart (working copy)
@@ -116,7 +116,7 @@
* An instrumentation logger that can be used when no other instrumentation logger has been
* configured. This logger will silently ignore all data and logging requests.
*/
- static InstrumentationLogger _NULL_LOGGER = new InstrumentationLogger_2();
+ static InstrumentationLogger _NULL_LOGGER = new InstrumentationLogger_5();
/**
* The current instrumentation logger.
*/
@@ -162,8 +162,8 @@
* Set the logger that should receive instrumentation information to the given logger.
* @param logger the logger that should receive instrumentation information
*/
- static void set logger(InstrumentationLogger logger) {
- _CURRENT_LOGGER = logger == null ? Instrumentation._NULL_LOGGER : logger;
+ static void set logger(InstrumentationLogger logger3) {
+ _CURRENT_LOGGER = logger3 == null ? _NULL_LOGGER : logger3;
}
/**
* Prevent the creation of instances of this class
@@ -171,15 +171,15 @@
Instrumentation() {
}
}
-class InstrumentationLogger_2 implements InstrumentationLogger {
+class InstrumentationLogger_5 implements InstrumentationLogger {
/**
* An operation builder that will silently ignore all data and logging requests.
*/
- OperationBuilder _NULL_BUILDER = new OperationBuilder_3();
+ OperationBuilder _NULL_BUILDER = new OperationBuilder_6();
OperationBuilder createMetric(String name, int time) => _NULL_BUILDER;
OperationBuilder createOperation(String name, int time) => _NULL_BUILDER;
}
-class OperationBuilder_3 implements OperationBuilder {
+class OperationBuilder_6 implements OperationBuilder {
void log() {
}
OperationBuilder with2(String name, AsyncValue valueGenerator) => this;

Powered by Google App Engine
This is Rietveld 408576698