| Index: sdk/lib/_internal/pub_generated/lib/src/dart.dart
|
| diff --git a/sdk/lib/_internal/pub_generated/lib/src/dart.dart b/sdk/lib/_internal/pub_generated/lib/src/dart.dart
|
| index b6399990178bb0f2e1f27c21c487a1b86372d358..35ff526defae487c783808af93bf47512feae612 100644
|
| --- a/sdk/lib/_internal/pub_generated/lib/src/dart.dart
|
| +++ b/sdk/lib/_internal/pub_generated/lib/src/dart.dart
|
| @@ -58,10 +58,9 @@ abstract class CompilerProvider {
|
| Future compile(String entrypoint, CompilerProvider provider,
|
| {Iterable<String> commandLineOptions, bool checked: false, bool csp: false,
|
| bool minify: true, bool verbose: false, Map<String, String> environment,
|
| - String packageRoot, bool analyzeAll: false, bool preserveUris: false,
|
| - bool suppressWarnings: false, bool suppressHints: false,
|
| - bool suppressPackageWarnings: true, bool terse: false,
|
| - bool includeSourceMapUrls: false, bool toDart: false}) {
|
| + String packageRoot, bool analyzeAll: false, bool suppressWarnings: false,
|
| + bool suppressHints: false, bool suppressPackageWarnings: true, bool terse:
|
| + false, bool includeSourceMapUrls: false, bool toDart: false}) {
|
| return new Future.sync(() {
|
| var options = <String>['--categories=Client,Server'];
|
| if (checked) options.add('--enable-checked-mode');
|
| @@ -69,7 +68,6 @@ Future compile(String entrypoint, CompilerProvider provider,
|
| if (minify) options.add('--minify');
|
| if (verbose) options.add('--verbose');
|
| if (analyzeAll) options.add('--analyze-all');
|
| - if (preserveUris) options.add('--preserve-uris');
|
| if (suppressWarnings) options.add('--suppress-warnings');
|
| if (suppressHints) options.add('--suppress-hints');
|
| if (!suppressPackageWarnings) options.add('--show-package-warnings');
|
|
|