| OLD | NEW |
| 1 // This code was auto-generated, is not intended to be edited, and is subject to | 1 // This code was auto-generated, is not intended to be edited, and is subject to |
| 2 // significant change. Please see the README file for more information. | 2 // significant change. Please see the README file for more information. |
| 3 library engine.instrumentation; | 3 library engine.instrumentation; |
| 4 import 'java_core.dart'; | 4 import 'java_core.dart'; |
| 5 /** | 5 /** |
| 6 * The class `Instrumentation` implements support for logging instrumentation in
formation. | 6 * The class `Instrumentation` implements support for logging instrumentation in
formation. |
| 7 * | 7 * |
| 8 * Instrumentation information consists of information about specific operations
. Those operations | 8 * Instrumentation information consists of information about specific operations
. Those operations |
| 9 * can range from user-facing operations, such as saving the changes to a file,
to internal | 9 * can range from user-facing operations, such as saving the changes to a file,
to internal |
| 10 * operations, such as tokenizing source code. The information to be logged is g
athered by | 10 * operations, such as tokenizing source code. The information to be logged is g
athered by |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 | 285 |
| 286 /** | 286 /** |
| 287 * Create a builder that can collect the data associated with an operation ide
ntified by the given | 287 * Create a builder that can collect the data associated with an operation ide
ntified by the given |
| 288 * name. | 288 * name. |
| 289 * | 289 * |
| 290 * @param name the name used to uniquely identify the operation | 290 * @param name the name used to uniquely identify the operation |
| 291 * @return the builder that was created | 291 * @return the builder that was created |
| 292 */ | 292 */ |
| 293 InstrumentationBuilder createBuilder(String name); | 293 InstrumentationBuilder createBuilder(String name); |
| 294 } | 294 } |
| OLD | NEW |