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

Unified Diff: pkg/compiler/lib/src/kernel/fasta_support.dart

Issue 2895983002: Read SDK and patches from a JSON file. (Closed)
Patch Set: Merged with 1333f97b9a0e3805f991578ef83b0ec4553ecf33 Created 3 years, 7 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 | pkg/front_end/lib/src/base/processed_options.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/kernel/fasta_support.dart
diff --git a/pkg/compiler/lib/src/kernel/fasta_support.dart b/pkg/compiler/lib/src/kernel/fasta_support.dart
index dc28c6509ece1fe4da3fe3f2f31dd7f563bef432..af3b833499166340dc5fbbff5f0f6be69122e314 100644
--- a/pkg/compiler/lib/src/kernel/fasta_support.dart
+++ b/pkg/compiler/lib/src/kernel/fasta_support.dart
@@ -38,8 +38,8 @@ import 'package:front_end/src/fasta/translate_uri.dart' show TranslateUri;
Future compilePlatform(Uri patchedSdk, Uri fullOutput,
{Uri outlineOutput, Uri packages}) async {
Uri deps = Uri.base.resolveUri(new Uri.file("${fullOutput.toFilePath()}.d"));
- TranslateUri uriTranslator = await TranslateUri.parse(
- PhysicalFileSystem.instance, patchedSdk, packages);
+ TranslateUri uriTranslator = await TranslateUri
+ .parse(PhysicalFileSystem.instance, patchedSdk, packages: packages);
var ticker = new Ticker(isVerbose: false);
var dillTarget = new DillTargetForDart2js(ticker, uriTranslator);
var kernelTarget =
« no previous file with comments | « no previous file | pkg/front_end/lib/src/base/processed_options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698