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

Unified Diff: sdk/lib/_internal/compiler/implementation/dart2js.dart

Issue 183833010: Change --hide-package-warnings to --show-package-warnings and add hint on suppress warnings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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
Index: sdk/lib/_internal/compiler/implementation/dart2js.dart
diff --git a/sdk/lib/_internal/compiler/implementation/dart2js.dart b/sdk/lib/_internal/compiler/implementation/dart2js.dart
index b44541509d61898caba2c840451aa51e13d98d03..022b0e5873233bec4075f838d4313da58ab0dea2 100644
--- a/sdk/lib/_internal/compiler/implementation/dart2js.dart
+++ b/sdk/lib/_internal/compiler/implementation/dart2js.dart
@@ -279,7 +279,7 @@ Future compile(List<String> argv) {
new OptionHandler('--dump-info', passThrough),
new OptionHandler('--disallow-unsafe-eval',
(_) => hasDisallowUnsafeEval = true),
- new OptionHandler('--hide-package-warnings', passThrough),
+ new OptionHandler('--show-package-warnings', passThrough),
new OptionHandler('-D.+=.*', addInEnvironment),
// The following two options must come last.
@@ -558,8 +558,9 @@ Supported options:
Emit diagnostics without suggestions for how to get rid of the diagnosed
problems.
- --hide-package-warnings
- Hide warnings and hints generated from packages.
+ --show-package-warnings
+ Show warnings and hints generated from packages that are not directly
floitsch 2014/03/03 13:30:23 What does "directly analyzed" mean? I would keep
Johnni Winther 2014/03/03 13:40:26 "directly analyzed" means given as entry point. If
+ analyzed by dart2js.
The following options are only used for compiler development and may
be removed in a future version:

Powered by Google App Engine
This is Rietveld 408576698