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

Side by Side Diff: pkg/analysis_server/tool/spec/generated/java/types/RequestErrorCode.java

Issue 2703033002: Add a diagnostic.getServerPort analysis server request. (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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015, the Dart project authors. 2 * Copyright (c) 2015, the Dart project authors.
3 * 3 *
4 * Licensed under the Eclipse Public License v1.0 (the "License"); you may not u se this file except 4 * Licensed under the Eclipse Public License v1.0 (the "License"); you may not u se this file except
5 * in compliance with the License. You may obtain a copy of the License at 5 * in compliance with the License. You may obtain a copy of the License at
6 * 6 *
7 * http://www.eclipse.org/legal/epl-v10.html 7 * http://www.eclipse.org/legal/epl-v10.html
8 * 8 *
9 * Unless required by applicable law or agreed to in writing, software distribut ed under the License 9 * Unless required by applicable law or agreed to in writing, software distribut ed under the License
10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY K IND, either express 10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY K IND, either express
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 * is described in the message. 107 * is described in the message.
108 */ 108 */
109 public static final String ORGANIZE_DIRECTIVES_ERROR = "ORGANIZE_DIRECTIVES_ER ROR"; 109 public static final String ORGANIZE_DIRECTIVES_ERROR = "ORGANIZE_DIRECTIVES_ER ROR";
110 110
111 /** 111 /**
112 * Another refactoring request was received during processing of this one. 112 * Another refactoring request was received during processing of this one.
113 */ 113 */
114 public static final String REFACTORING_REQUEST_CANCELLED = "REFACTORING_REQUES T_CANCELLED"; 114 public static final String REFACTORING_REQUEST_CANCELLED = "REFACTORING_REQUES T_CANCELLED";
115 115
116 /** 116 /**
117 * The server was unable to handle the request.
118 */
119 public static final String ERROR_HANDLING_REQUEST = "ERROR_HANDLING_REQUEST";
120
121 /**
117 * The analysis server has already been started (and hence won't accept new co nnections). 122 * The analysis server has already been started (and hence won't accept new co nnections).
118 * 123 *
119 * This error is included for future expansion; at present the analysis server can only speak to 124 * This error is included for future expansion; at present the analysis server can only speak to
120 * one client at a time so this error will never occur. 125 * one client at a time so this error will never occur.
121 */ 126 */
122 public static final String SERVER_ALREADY_STARTED = "SERVER_ALREADY_STARTED"; 127 public static final String SERVER_ALREADY_STARTED = "SERVER_ALREADY_STARTED";
123 128
124 /** 129 /**
125 * An internal error occurred in the analysis server. Also see the server.erro r notification. 130 * An internal error occurred in the analysis server. Also see the server.erro r notification.
126 */ 131 */
(...skipping 29 matching lines...) Expand all
156 public static final String UNKNOWN_SOURCE = "UNKNOWN_SOURCE"; 161 public static final String UNKNOWN_SOURCE = "UNKNOWN_SOURCE";
157 162
158 /** 163 /**
159 * The analysis server was requested to perform an action which is not support ed. 164 * The analysis server was requested to perform an action which is not support ed.
160 * 165 *
161 * This is a legacy error; it will be removed before the API reaches version 1 .0. 166 * This is a legacy error; it will be removed before the API reaches version 1 .0.
162 */ 167 */
163 public static final String UNSUPPORTED_FEATURE = "UNSUPPORTED_FEATURE"; 168 public static final String UNSUPPORTED_FEATURE = "UNSUPPORTED_FEATURE";
164 169
165 } 170 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698