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

Unified Diff: sdk/lib/_internal/pub/lib/src/dart.dart

Issue 175083002: Add support for --hide-package-warnings to pub but negate it in (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/pub/lib/src/dart.dart
diff --git a/sdk/lib/_internal/pub/lib/src/dart.dart b/sdk/lib/_internal/pub/lib/src/dart.dart
index e160572d3ad35a10d9ee3b67405e3fad93c4d42d..612e2676cfe75fbf86a91fb225a5de1824ff215c 100644
--- a/sdk/lib/_internal/pub/lib/src/dart.dart
+++ b/sdk/lib/_internal/pub/lib/src/dart.dart
@@ -59,6 +59,7 @@ Future compile(String entrypoint, CompilerProvider provider, {
bool analyzeAll: false,
bool suppressWarnings: false,
bool suppressHints: false,
+ bool suppressPackageWarnings: true,
bool terse: false,
bool toDart: false}) {
return syncFuture(() {
@@ -69,6 +70,7 @@ Future compile(String entrypoint, CompilerProvider provider, {
if (analyzeAll) options.add('--analyze-all');
if (suppressWarnings) options.add('--suppress-warnings');
if (suppressHints) options.add('--suppress-hints');
+ if (suppressPackageWarnings) options.add('--hide-package-warnings');
if (terse) options.add('--terse');
if (toDart) options.add('--output-type=dart');

Powered by Google App Engine
This is Rietveld 408576698