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

Unified Diff: pkg/analysis_server/test/stress/utilities/server.dart

Issue 2696323004: Tests for analysis.navigation. (Closed)
Patch Set: Created 3 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: pkg/analysis_server/test/stress/utilities/server.dart
diff --git a/pkg/analysis_server/test/stress/utilities/server.dart b/pkg/analysis_server/test/stress/utilities/server.dart
index 08beaa04e4adae56cc17a30e2cd402f1b03cfc73..a8fb15192256bef97407dc88518907a51a67eb3f 100644
--- a/pkg/analysis_server/test/stress/utilities/server.dart
+++ b/pkg/analysis_server/test/stress/utilities/server.dart
@@ -608,9 +608,6 @@ class Server {
*
* If [checked] is `true`, the server's VM will be running in checked mode.
*
- * If [debugServer] is `true`, the server will be started with "--debug",
- * allowing a debugger to be attached.
- *
* If [diagnosticPort] is not `null`, the server will serve status pages to
* the specified port.
*
@@ -625,7 +622,6 @@ class Server {
*/
Future<Null> start(
{bool checked: true,
- bool debugServer: false,
int diagnosticPort,
bool enableNewAnalysisDriver: false,
bool profileServer: false,
@@ -644,9 +640,6 @@ class Server {
//
// Add VM arguments.
//
- if (debugServer) {
- arguments.add('--debug');
- }
if (profileServer) {
if (servicesPort == null) {
arguments.add('--observe');

Powered by Google App Engine
This is Rietveld 408576698