File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -5671,7 +5671,7 @@ class PackageGraph {
5671
5671
lib ?? = Library (e.enclosingElement.library, packageGraph);
5672
5672
// (TODO:keertip) Find a better way to exclude members of extensions
5673
5673
// when libraries are specified using the "--include" flag
5674
- if (lib? .isDocumented) {
5674
+ if (lib? .isDocumented == true ) {
5675
5675
return ModelElement .from (e, lib, packageGraph);
5676
5676
}
5677
5677
}
Original file line number Diff line number Diff line change @@ -2100,13 +2100,12 @@ void main() {
2100
2100
});
2101
2101
2102
2102
group ('Extension' , () {
2103
- Extension ext, anExt, fancyList;
2103
+ Extension ext, fancyList;
2104
2104
Method s;
2105
2105
List <Extension > extensions;
2106
2106
2107
2107
setUpAll (() {
2108
2108
ext = exLibrary.extensions.firstWhere ((e) => e.name == 'AppleExtension' );
2109
- anExt = exLibrary.extensions.firstWhere ((e) => e.name == 'AnExtension' );
2110
2109
fancyList = exLibrary.extensions.firstWhere ((e) => e.name == 'FancyList' );
2111
2110
extensions = exLibrary.publicExtensions.toList ();
2112
2111
});
You can’t perform that action at this time.
0 commit comments