Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(199)

Unified Diff: lib/src/info.dart

Issue 1235503010: fixes #219, able to compile multiple entry points (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}

Powered by Google App Engine
This is Rietveld 408576698