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

Unified Diff: lib/src/summary.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/summary.dart
diff --git a/lib/src/summary.dart b/lib/src/summary.dart
index 3678a3fbcaa7ce227ede88a063a814ad0594492e..61737d7cdf0e400c00abe8b78c2a61ba8681e8e5 100644
--- a/lib/src/summary.dart
+++ b/lib/src/summary.dart
@@ -104,7 +104,7 @@ class LibrarySummary implements IndividualSummary {
LibrarySummary(this.name, {List<MessageSummary> messages, lines})
: messages = messages == null ? <MessageSummary>[] : messages,
- _lines = lines == null ? lines : 0;
vsm 2015/07/16 23:56:39 oops!
+ _lines = lines != null ? lines : 0;
void clear() {
_uris.clear();
« lib/src/compiler.dart ('K') | « lib/src/server/server.dart ('k') | lib/src/testing.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698