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

Unified Diff: pkg/analysis_server/lib/src/status/get_handler.dart

Issue 2530273004: Status page for the new analysis driver. (Closed)
Patch Set: Created 4 years, 1 month 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/analysis_server/lib/src/status/get_handler.dart
diff --git a/pkg/analysis_server/lib/src/status/get_handler.dart b/pkg/analysis_server/lib/src/status/get_handler.dart
index 5a4cdc960eca29b746f48fd45c5f5130dadb3f7d..f06c4cc358e0f9259fcca3964fcc7c5565da10ab 100644
--- a/pkg/analysis_server/lib/src/status/get_handler.dart
+++ b/pkg/analysis_server/lib/src/status/get_handler.dart
@@ -2506,6 +2506,9 @@ class GetHandler {
}
buffer.write('<p>');
buffer.write('Status: Running<br>');
+ buffer.write('New analysis driver: ');
+ buffer.write(analysisServer.options.enableNewAnalysisDriver);
+ buffer.write('<br>');
buffer.write('Instrumentation: ');
if (AnalysisEngine.instance.instrumentationService.isActive) {
buffer.write('<span style="color:red">Active</span>');

Powered by Google App Engine
This is Rietveld 408576698