| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // This code was auto-generated, is not intended to be edited, and is subject to | 5 // This code was auto-generated, is not intended to be edited, and is subject to |
| 6 // significant change. Please see the README file for more information. | 6 // significant change. Please see the README file for more information. |
| 7 | 7 |
| 8 library engine; | 8 library engine; |
| 9 | 9 |
| 10 import 'java_core.dart'; | 10 import 'java_core.dart'; |
| (...skipping 8583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8594 /** | 8594 /** |
| 8595 * Container with global [AnalysisContext] performance statistics. | 8595 * Container with global [AnalysisContext] performance statistics. |
| 8596 */ | 8596 */ |
| 8597 class PerformanceStatistics { | 8597 class PerformanceStatistics { |
| 8598 /** | 8598 /** |
| 8599 * The [TimeCounter] for time spent in Angular analysis. | 8599 * The [TimeCounter] for time spent in Angular analysis. |
| 8600 */ | 8600 */ |
| 8601 static TimeCounter angular = new TimeCounter(); | 8601 static TimeCounter angular = new TimeCounter(); |
| 8602 | 8602 |
| 8603 /** | 8603 /** |
| 8604 * The [TimeCounter] for time spent in reading files. |
| 8605 */ |
| 8606 static TimeCounter io = new TimeCounter(); |
| 8607 |
| 8608 /** |
| 8604 * The [TimeCounter] for time spent in scanning. | 8609 * The [TimeCounter] for time spent in scanning. |
| 8605 */ | 8610 */ |
| 8606 static TimeCounter scan = new TimeCounter(); | 8611 static TimeCounter scan = new TimeCounter(); |
| 8607 | 8612 |
| 8608 /** | 8613 /** |
| 8609 * The [TimeCounter] for time spent in parsing. | 8614 * The [TimeCounter] for time spent in parsing. |
| 8610 */ | 8615 */ |
| 8611 static TimeCounter parse = new TimeCounter(); | 8616 static TimeCounter parse = new TimeCounter(); |
| 8612 | 8617 |
| 8613 /** | 8618 /** |
| (...skipping 3105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11719 | 11724 |
| 11720 void logError2(String message, Exception exception) { | 11725 void logError2(String message, Exception exception) { |
| 11721 } | 11726 } |
| 11722 | 11727 |
| 11723 void logInformation(String message) { | 11728 void logInformation(String message) { |
| 11724 } | 11729 } |
| 11725 | 11730 |
| 11726 void logInformation3(String message, Exception exception) { | 11731 void logInformation3(String message, Exception exception) { |
| 11727 } | 11732 } |
| 11728 } | 11733 } |
| OLD | NEW |