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

Unified Diff: pkg/front_end/lib/src/fasta/compiler_command_line.dart

Issue 2751093004: [fasta] Flip source flag and include source by default (Closed)
Patch Set: Created 3 years, 9 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/fasta/source/source_loader.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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'.
« no previous file with comments | « no previous file | pkg/front_end/lib/src/fasta/source/source_loader.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698