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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/apiimpl.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, 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library leg_apiimpl; 5 library leg_apiimpl;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 import '../compiler.dart' as api; 9 import '../compiler.dart' as api;
10 import 'dart2jslib.dart' as leg; 10 import 'dart2jslib.dart' as leg;
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 disableTypeInferenceFlag: 56 disableTypeInferenceFlag:
57 hasOption(options, '--disable-type-inference'), 57 hasOption(options, '--disable-type-inference'),
58 preserveComments: hasOption(options, '--preserve-comments'), 58 preserveComments: hasOption(options, '--preserve-comments'),
59 verbose: hasOption(options, '--verbose'), 59 verbose: hasOption(options, '--verbose'),
60 sourceMapUri: extractSourceMapUri(options), 60 sourceMapUri: extractSourceMapUri(options),
61 terseDiagnostics: hasOption(options, '--terse'), 61 terseDiagnostics: hasOption(options, '--terse'),
62 dumpInfo: hasOption(options, '--dump-info'), 62 dumpInfo: hasOption(options, '--dump-info'),
63 buildId: extractStringOption( 63 buildId: extractStringOption(
64 options, '--build-id=', 64 options, '--build-id=',
65 "build number could not be determined"), 65 "build number could not be determined"),
66 hidePackageWarnings: 66 showPackageWarnings:
67 hasOption(options, '--hide-package-warnings')) { 67 hasOption(options, '--show-package-warnings')) {
68 if (!libraryRoot.path.endsWith("/")) { 68 if (!libraryRoot.path.endsWith("/")) {
69 throw new ArgumentError("libraryRoot must end with a /"); 69 throw new ArgumentError("libraryRoot must end with a /");
70 } 70 }
71 if (packageRoot != null && !packageRoot.path.endsWith("/")) { 71 if (packageRoot != null && !packageRoot.path.endsWith("/")) {
72 throw new ArgumentError("packageRoot must end with a /"); 72 throw new ArgumentError("packageRoot must end with a /");
73 } 73 }
74 } 74 }
75 75
76 static String extractStringOption(List<String> options, 76 static String extractStringOption(List<String> options,
77 String prefix, 77 String prefix,
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 } 331 }
332 332
333 void diagnoseCrashInUserCode(String message, exception, stackTrace) { 333 void diagnoseCrashInUserCode(String message, exception, stackTrace) {
334 hasCrashed = true; 334 hasCrashed = true;
335 print('$message: ${tryToString(exception)}'); 335 print('$message: ${tryToString(exception)}');
336 print(tryToString(stackTrace)); 336 print(tryToString(stackTrace));
337 } 337 }
338 338
339 fromEnvironment(String name) => environment[name]; 339 fromEnvironment(String name) => environment[name];
340 } 340 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698