| // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| |
| import 'dart:async'; |
| |
| import 'package:analysis_server/src/status/diagnostics.dart'; |
| import 'package:analysis_server/src/status/pages.dart'; |
| import 'package:analysis_server/src/status/utilities/ast_writer.dart'; |
| import 'package:analyzer/dart/analysis/results.dart'; |
| |
| class AstPage extends DiagnosticPageWithNav { |
| String? _description; |
| |
| new(DiagnosticsSite site) |
| : super(site, 'ast', 'AST', description: 'The AST for a file.'); |
| |
| @override |
| String? get description => _description ?? super.description; |
| |
| @override |
| bool get showInNav => false; |
| |
| @override |
| Future<void> generateContent(Map<String, String> params) async { |
| var filePath = params['file']; |
| if (filePath == null) { |
| p('No file path provided.'); |
| return; |
| } |
| var driver = server.getAnalysisDriver(filePath); |
| if (driver == null) { |
| p( |
| 'The file <code>${escape(filePath)}</code> is not being analyzed.', |
| raw: true, |
| ); |
| return; |
| } |
| var result = await driver.getResolvedUnit(filePath); |
| if (result is ResolvedUnitResult) { |
| var writer = AstWriter(buf); |
| result.unit.accept(writer); |
| } else { |
| p( |
| 'An AST could not be produced for the file ' |
| '<code>${escape(filePath)}</code>.', |
| raw: true, |
| ); |
| } |
| } |
| |
| @override |
| Future<void> generatePage(Map<String, String> params) async { |
| try { |
| _description = params['file']; |
| await super.generatePage(params); |
| } finally { |
| _description = null; |
| } |
| } |
| } |