| Index: pkg/front_end/lib/src/fasta/compiler_command_line.dart
|
| diff --git a/pkg/front_end/lib/src/fasta/compiler_command_line.dart b/pkg/front_end/lib/src/fasta/compiler_command_line.dart
|
| index 38f09d759fa1f1d72ea6bc71e3987a048ee417e4..01c656aa868b3a1a252530bd7513da7e7f174c96 100644
|
| --- a/pkg/front_end/lib/src/fasta/compiler_command_line.dart
|
| +++ b/pkg/front_end/lib/src/fasta/compiler_command_line.dart
|
| @@ -32,7 +32,7 @@ class CompilerCommandLine extends CommandLine {
|
|
|
| bool get dumpIr => options.containsKey("--dump-ir");
|
|
|
| - bool get includeSource => options.containsKey("--include-source");
|
| + bool get excludeSource => options.containsKey("--exclude-source");
|
|
|
| bool get help {
|
| return options.containsKey("--help") ||
|
| @@ -169,8 +169,8 @@ Supported options:
|
| --dump-ir
|
| Print compiled libraries in Kernel source notation.
|
|
|
| - --include-source
|
| - Include source code in the dill file. Used for debugging.
|
| + --exclude-source
|
| + Do not include source code in the dill file.
|
|
|
| --compile-sdk=<patched_sdk>
|
| Compile the SDK from scratch instead of reading it from 'platform.dill'.
|
|
|