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

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

Issue 206653003: Un-hide the --hostname option for pub serve. (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/lib/src/command/serve.dart
diff --git a/sdk/lib/_internal/pub/lib/src/command/serve.dart b/sdk/lib/_internal/pub/lib/src/command/serve.dart
index f43cc3a4b1a6588237079b86617460089a4938a0..214edb13eb656d0b996054f8c84475dcc41b5262 100644
--- a/sdk/lib/_internal/pub/lib/src/command/serve.dart
+++ b/sdk/lib/_internal/pub/lib/src/command/serve.dart
@@ -44,16 +44,11 @@ class ServeCommand extends PubCommand {
final _completer = new Completer();
ServeCommand() {
+ commandParser.addOption('hostname', defaultsTo: 'localhost',
+ help: 'The hostname to listen on.');
commandParser.addOption('port', defaultsTo: '8080',
help: 'The base port to listen on.');
- // A hidden option for the tests to work around a bug in some of the OS X
- // bots where "localhost" very rarely resolves to the IPv4 loopback address
- // instead of IPv6 (or vice versa). The tests will always set this to
- // 127.0.0.1.
- commandParser.addOption('hostname',
- defaultsTo: 'localhost',
- hide: true);
commandParser.addFlag('dart2js', defaultsTo: true,
help: 'Compile Dart to JavaScript.');
commandParser.addFlag('force-poll', defaultsTo: false,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698