dart2js source mirrors should either provide access to exports or include exported elements #14669
Labels
closed-not-planned
Closed as we don't intend to take action on the reported issue
library-mirrors
web-dart2js
In the context of docgen, we are using dart2js source mirrors to extract the documentation information. However, the library mirrors we receive do not include exported members, and as far as I can see there is no way to retrieve them. We can look them up by name if we already know the name, but there is no way to get the list of names. So a program of the form
library stuff;
import 'src/otherStuff.dart';
export 'src/otherStuff.dart';
<EOF>
then has no documentation.
The text was updated successfully, but these errors were encountered: