Closed
Description
This issue was originally filed by @seaneagan
If you want to stop exporting library A from library B, but you don't want to deprecate library A itself, it would be nice to be able mark the export as deprecated:
@deprecated('Use libraryA.dart directly instead')
export 'libraryA.dart';
Here are some use cases:
Stop exporting something:
dart-lang/test#53
Split part of a library into a separate library with a temporary re-export:
dart-lang/test#2326