| OLD | NEW |
| 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 12 matching lines...) Expand all Loading... |
| 23 */ | 23 */ |
| 24 public class RequestErrorCode { | 24 public class RequestErrorCode { |
| 25 | 25 |
| 26 /** | 26 /** |
| 27 * An "analysis.getErrors" or "analysis.getNavigation" request could not be sa
tisfied because the | 27 * An "analysis.getErrors" or "analysis.getNavigation" request could not be sa
tisfied because the |
| 28 * content of the file changed before the requested results could be computed. | 28 * content of the file changed before the requested results could be computed. |
| 29 */ | 29 */ |
| 30 public static final String CONTENT_MODIFIED = "CONTENT_MODIFIED"; | 30 public static final String CONTENT_MODIFIED = "CONTENT_MODIFIED"; |
| 31 | 31 |
| 32 /** | 32 /** |
| 33 * The server was unable to open a port for the diagnostic server. |
| 34 */ |
| 35 public static final String DEBUG_PORT_COULD_NOT_BE_OPENED = "DEBUG_PORT_COULD_
NOT_BE_OPENED"; |
| 36 |
| 37 /** |
| 33 * A request specified a FilePath which does not match a file in an analysis r
oot, or the requested | 38 * A request specified a FilePath which does not match a file in an analysis r
oot, or the requested |
| 34 * operation is not available for the file. | 39 * operation is not available for the file. |
| 35 */ | 40 */ |
| 36 public static final String FILE_NOT_ANALYZED = "FILE_NOT_ANALYZED"; | 41 public static final String FILE_NOT_ANALYZED = "FILE_NOT_ANALYZED"; |
| 37 | 42 |
| 38 /** | 43 /** |
| 39 * An "edit.format" request specified a FilePath which does not match a Dart f
ile in an analysis | 44 * An "edit.format" request specified a FilePath which does not match a Dart f
ile in an analysis |
| 40 * root. | 45 * root. |
| 41 */ | 46 */ |
| 42 public static final String FORMAT_INVALID_FILE = "FORMAT_INVALID_FILE"; | 47 public static final String FORMAT_INVALID_FILE = "FORMAT_INVALID_FILE"; |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| OLD | NEW |