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

Unified Diff: pkg/analysis_server/lib/src/server/driver.dart

Issue 957263003: update comments for http diagnostic port (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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
« no previous file with comments | « editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/DartCoreDebug.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/src/server/driver.dart
diff --git a/pkg/analysis_server/lib/src/server/driver.dart b/pkg/analysis_server/lib/src/server/driver.dart
index 6811300174a0d504e612035fef008af84eefcb42..08cb05f9cc13d440889e55e054a2d7ea33a1163e 100644
--- a/pkg/analysis_server/lib/src/server/driver.dart
+++ b/pkg/analysis_server/lib/src/server/driver.dart
@@ -122,8 +122,9 @@ class Driver implements ServerStarter {
static const String INTERNAL_DELAY_FREQUENCY = 'internal-delay-frequency';
/**
- * The name of the option used to specify the port to which the server will
- * connect.
+ * The option for specifying the http diagnostic port.
+ * If specified, users can review server status and performance information
+ * by opening a web browser on http://localhost:<port>
*/
static const String PORT_OPTION = "port";
@@ -364,7 +365,8 @@ class Driver implements ServerStarter {
negatable: false);
parser.addOption(
PORT_OPTION,
- help: "[port] the port on which the server will listen");
+ help: "the http diagnostic port on which the server provides"
+ " status and performance information");
parser.addOption(INTERNAL_DELAY_FREQUENCY);
parser.addOption(SDK_OPTION, help: "[path] the path to the sdk");
parser.addFlag(
« no previous file with comments | « editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/DartCoreDebug.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698