a0b38184e2
The code that was previously owned by the analyzer team (OWNERS_ANALYZER) is now owned by either the Dart Model team (OWNERS_MODEL) or the developer experience team (OWNERS_DEVELOPER_EXPERIENCE). Accordingly, we don't need OWNERS_ANALYZER anymore. Change-Id: I9a4d2e2462a15ba9ec8f3046cdca77ba9d3af13c Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/410564 Reviewed-by: Kevin Moore <kevmoo@google.com> Reviewed-by: Brian Wilkerson <brianwilkerson@google.com> Commit-Queue: Paul Berry <paulberry@google.com>
telemetry
A library to facilitate reporting crash reports.
Crash reporting
To use the crash reporting functionality, import crash_reporting.dart, and
create a new CrashReportSender instance:
import 'package:telemetry/crash_reporting.dart';
void main() {
Analytics analytics = ...;
CrashReportSender sender = new CrashReportSender.prod(...);
try {
...
} catch (e, st) {
sender.sendReport(e, st);
}
}