Files
sdk/pkg/analyzer/tool/analysis_driver/inspect_exception.dart
T
pq e0d87b8f48 migrate analyzer to recommended lints
See: https://github.com/dart-lang/sdk/issues/48784

Change-Id: I69a2b6ef16159796e5fa405308438df62af6c826
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/240905
Reviewed-by: Konstantin Shcheglov <scheglov@google.com>
Commit-Queue: Phil Quitslund <pquitslund@google.com>
2022-04-11 22:47:41 +00:00

49 lines
1.1 KiB
Dart

// 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:io';
import 'package:analyzer/src/summary/idl.dart';
import 'package:args/args.dart';
main(List<String> args) {
ArgParser argParser = ArgParser()..addFlag('raw');
ArgResults argResults = argParser.parse(args);
if (argResults.rest.length != 1) {
print(argParser.usage);
exitCode = 1;
return;
}
String path = argResults.rest[0];
List<int> bytes = File(path).readAsBytesSync();
AnalysisDriverExceptionContext context =
AnalysisDriverExceptionContext.fromBuffer(bytes);
print(context.path);
print('');
print('');
print('');
print(context.exception);
print('');
print('');
print('');
print(context.stackTrace);
print('');
print('');
print('');
for (var file in context.files) {
print("=" * 40);
print(file.path);
print("-" * 40);
print(file.content);
print('');
print('');
print('');
}
}