| 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 import 'dart:async'; | 5 import 'dart:async'; |
| 6 import 'dart:collection'; | 6 import 'dart:collection'; |
| 7 import 'dart:core'; | 7 import 'dart:core'; |
| 8 import 'dart:io' as io; | 8 import 'dart:io' as io; |
| 9 import 'dart:math' show max; | 9 import 'dart:math' show max; |
| 10 | 10 |
| (...skipping 1046 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1057 scheduleImplementedNotification(this, files); | 1057 scheduleImplementedNotification(this, files); |
| 1058 } | 1058 } |
| 1059 } | 1059 } |
| 1060 } | 1060 } |
| 1061 | 1061 |
| 1062 /** | 1062 /** |
| 1063 * Various IDE options. | 1063 * Various IDE options. |
| 1064 */ | 1064 */ |
| 1065 class AnalysisServerOptions { | 1065 class AnalysisServerOptions { |
| 1066 bool useAnalysisHighlight2 = false; | 1066 bool useAnalysisHighlight2 = false; |
| 1067 bool enableVerboseFlutterCompletions = false; | |
| 1068 | 1067 |
| 1069 String fileReadMode = 'as-is'; | 1068 String fileReadMode = 'as-is'; |
| 1070 String newAnalysisDriverLog; | 1069 String newAnalysisDriverLog; |
| 1071 | 1070 |
| 1072 String clientId; | 1071 String clientId; |
| 1073 String clientVersion; | 1072 String clientVersion; |
| 1074 | 1073 |
| 1075 /** | 1074 /** |
| 1076 * The analytics instance; note, this object can be `null`, and should be | 1075 * The analytics instance; note, this object can be `null`, and should be |
| 1077 * accessed via a null-aware operator. | 1076 * accessed via a null-aware operator. |
| (...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1495 /** | 1494 /** |
| 1496 * The [PerformanceTag] for time spent in server request handlers. | 1495 * The [PerformanceTag] for time spent in server request handlers. |
| 1497 */ | 1496 */ |
| 1498 static PerformanceTag serverRequests = server.createChild('requests'); | 1497 static PerformanceTag serverRequests = server.createChild('requests'); |
| 1499 | 1498 |
| 1500 /** | 1499 /** |
| 1501 * The [PerformanceTag] for time spent in split store microtasks. | 1500 * The [PerformanceTag] for time spent in split store microtasks. |
| 1502 */ | 1501 */ |
| 1503 static PerformanceTag splitStore = new PerformanceTag('splitStore'); | 1502 static PerformanceTag splitStore = new PerformanceTag('splitStore'); |
| 1504 } | 1503 } |
| OLD | NEW |