| 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 4ed91dabc3185e2df4c0ab1ee13cc86ec8cd631c..865192b2aa6fed78a8eaa327703b6683a72d2e65 100644
|
| --- a/pkg/front_end/lib/src/fasta/fasta.dart
|
| +++ b/pkg/front_end/lib/src/fasta/fasta.dart
|
| @@ -247,6 +247,7 @@ Future compilePlatform(Uri patchedSdk, Uri fullOutput,
|
| if (verbose) {
|
| c.options.options["--verbose"] = true;
|
| }
|
| + c.options.validate();
|
| return compilePlatformInternal(
|
| c, ticker, patchedSdk, fullOutput, outlineOutput);
|
| });
|
| @@ -269,6 +270,7 @@ Future writeDepsFile(Uri script, Uri depsFile, Uri output,
|
| if (verbose) {
|
| c.options.options["--verbose"] = true;
|
| }
|
| + c.options.validate();
|
| sdk ??= c.options.sdk;
|
|
|
| TranslateUri uriTranslator = await TranslateUri.parse(c.fileSystem, sdk,
|
|
|