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

Unified Diff: lib/src/server/server.dart

Issue 1679873004: Fix checked mode break in server mode (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/server/server.dart
diff --git a/lib/src/server/server.dart b/lib/src/server/server.dart
index 89a5ab608c4092133d91047b4cc75c481d9a3af6..123b0a0bbc142e592a6dc34707ba663c3060e83e 100644
--- a/lib/src/server/server.dart
+++ b/lib/src/server/server.dart
@@ -53,7 +53,8 @@ class ServerCompiler extends AbstractCompiler {
? SourceResolverOptions.implicitHtmlFile
: inputFile)));
var graph = new SourceGraph(context, reporter, options);
- var entryNodes = inputUris.map((inputUri) => graph.nodeFromUri(inputUri));
+ var entryNodes =
+ inputUris.map((inputUri) => graph.nodeFromUri(inputUri)).toList();
return new ServerCompiler._(context, options, reporter, graph, entryNodes);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698