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

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

Issue 1235293004: Fix server mode (Closed) Base URL: https://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
« no previous file with comments | « lib/src/codegen/html_codegen.dart ('k') | 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 b9a69d510fed22e1c59cdb4b7381a1c5bcea2a98..f3343c59b0c034df29289f657fa1b5758909116b 100644
--- a/lib/src/server/server.dart
+++ b/lib/src/server/server.dart
@@ -57,11 +57,12 @@ class ServerCompiler extends AbstractCompiler {
var graph = new SourceGraph(context, reporter, options);
var entryNode = graph.nodeFromUri(inputUri);
- return new ServerCompiler._(options, context, reporter, entryNode);
+ return new ServerCompiler._(context, options, reporter, entryNode);
}
- ServerCompiler._(context, options, reporter, this._entryNode)
- : super(options, context, reporter) {
+ ServerCompiler._(AnalysisContext context, CompilerOptions options,
+ AnalysisErrorListener reporter, this._entryNode)
+ : super(context, options, reporter) {
if (outputDir != null) {
_generators.add(new JSGenerator(this));
}
« no previous file with comments | « lib/src/codegen/html_codegen.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698