mirror of
https://github.com/dart-lang/sdk
synced 2024-11-05 18:22:09 +00:00
aa17e57451
Also, commit a small tool to pkg/pkg.dart to classify the analysis options settings used by the various pkg/ packages. Change-Id: I34087ed4d033cd2f679c378bcc9270ae65627ae2 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/282392 Commit-Queue: Devon Carew <devoncarew@google.com> Reviewed-by: Nate Bosch <nbosch@google.com> |
||
---|---|---|
.. | ||
lib | ||
test | ||
analysis_options.yaml | ||
CHANGELOG.md | ||
LICENSE | ||
OWNERS | ||
pubspec.yaml | ||
README.md |
☠☠ Warning: This package is experimental and may be removed in a future version of Dart. ☠☠
dart2js
can generate extra code to measure certain activities.
This library provides access to the measurements at runtime.
An application might make timings and other measurements and report them back to
a server in order to collect information on how the application is working in
production. The APIs in this library provide access to measurements that require
help from dart2js. For example, startupMetrics
accesses measurements of
activities that happen as the program is loaded, before main()
.
The APIs are stubbed so that dummy values are returned on the VM and dartdevc.