Index: pkg/compiler/lib/src/commandline_options.dart |
diff --git a/pkg/compiler/lib/src/commandline_options.dart b/pkg/compiler/lib/src/commandline_options.dart |
index 9c0c2449cec994a30fb9e39e92453f03d22da771..900ea3637bf46733a1d6333ab4774c2807de3f12 100644 |
--- a/pkg/compiler/lib/src/commandline_options.dart |
+++ b/pkg/compiler/lib/src/commandline_options.dart |
@@ -58,4 +58,8 @@ class Flags { |
class Option { |
static const String showPackageWarnings = |
'${Flags.showPackageWarnings}|${Flags.showPackageWarnings}=.*'; |
+ |
+ // Experimental options. |
Siggi Cherem (dart-lang)
2016/05/14 01:10:31
Several ideas/comments about how to expose the fla
Johnni Winther
2016/05/17 12:37:33
The --serialization-X are not meant to last but we
Siggi Cherem (dart-lang)
2016/05/17 21:54:25
I understand, I was also thinking we'd keep the ne
|
+ static const String serializationSource = '--serialization-source=.+'; |
+ static const String serializationTarget = '--serialization-target=.+'; |
} |