Index: pkg/front_end/lib/src/fasta/fasta.dart |
diff --git a/pkg/front_end/lib/src/fasta/fasta.dart b/pkg/front_end/lib/src/fasta/fasta.dart |
index db0b740b2d8b773c38b263ba1a378df3e61934ee..6076090b22593cbd3e4b665cf9c4b871c2f60a32 100644 |
--- a/pkg/front_end/lib/src/fasta/fasta.dart |
+++ b/pkg/front_end/lib/src/fasta/fasta.dart |
@@ -222,15 +222,16 @@ Future<CompilationResult> parseScript( |
} |
} |
-Future compilePlatform(Uri patchedSdk, Uri output, |
- {Uri packages, bool verbose: false}) async { |
+Future compilePlatform(Uri patchedSdk, Uri fullOutput, |
+ {Uri outlineOutput, Uri packages, bool verbose: false}) async { |
Ticker ticker = new Ticker(isVerbose: verbose); |
await CompilerCommandLine.withGlobalOptions("", [""], (CompilerContext c) { |
c.options.options["--packages"] = packages; |
if (verbose) { |
c.options.options["--verbose"] = true; |
} |
- return compilePlatformInternal(c, ticker, patchedSdk, output); |
+ return compilePlatformInternal( |
+ c, ticker, patchedSdk, fullOutput, outlineOutput); |
}); |
} |