-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
P2A bug or feature request we're likely to work onA bug or feature request we're likely to work onarea-devexpFor issues related to the analysis server, IDE support, linter, `dart fix`, and diagnostic messages.For issues related to the analysis server, IDE support, linter, `dart fix`, and diagnostic messages.devexp-analytics
Description
To motivate the refactoring to multi-option analysis contexts, we collected a bunch of data that is now no longer needed.
Specifically:
/// The number of contexts that were created that have neither a packages nor
/// an options file.
final int contextsWithoutFiles;
/// The number of contexts that were created that have a unique packages file
/// and either no options file or an inherited options file.
final int contextsFromPackagesFiles;
/// The number of contexts that were created that have a unique options file
/// and either no packages file or an inherited packages file.
final int contextsFromOptionsFiles;
/// The number of contexts that were created that have both a unique packages
/// file and a unique options file.
final int contextsFromBothFiles;With that work complete, we no longer need the data and should stop reporting it.
Metadata
Metadata
Assignees
Labels
P2A bug or feature request we're likely to work onA bug or feature request we're likely to work onarea-devexpFor issues related to the analysis server, IDE support, linter, `dart fix`, and diagnostic messages.For issues related to the analysis server, IDE support, linter, `dart fix`, and diagnostic messages.devexp-analytics