| Index: lib/src/info.dart
 | 
| diff --git a/lib/src/info.dart b/lib/src/info.dart
 | 
| index 9263d65331444175e237255be4e7992d9b7dd1ab..8bfc909e753c1d089d4220fff25c6b3aa291046a 100644
 | 
| --- a/lib/src/info.dart
 | 
| +++ b/lib/src/info.dart
 | 
| @@ -30,13 +30,10 @@ class LibraryInfo {
 | 
|    /// Instead, this is inferred from the path to the file defining the library.
 | 
|    final String name;
 | 
|  
 | 
| -  /// Whether this is the entry library that contains `main`.
 | 
| -  final bool isEntry;
 | 
| -
 | 
|    /// Corresponding analyzer element.
 | 
|    final LibraryElement library;
 | 
|  
 | 
| -  LibraryInfo(library, this.isEntry)
 | 
| +  LibraryInfo(library)
 | 
|        : library = library,
 | 
|          name = utils.canonicalLibraryName(library);
 | 
|  }
 | 
| 
 |