| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 */ | 69 */ |
| 70 public static final String GET_NAVIGATION_INVALID_FILE = "GET_NAVIGATION_INVAL
ID_FILE"; | 70 public static final String GET_NAVIGATION_INVALID_FILE = "GET_NAVIGATION_INVAL
ID_FILE"; |
| 71 | 71 |
| 72 /** | 72 /** |
| 73 * An "analysis.getReachableSources" request specified a FilePath which does n
ot match a file | 73 * An "analysis.getReachableSources" request specified a FilePath which does n
ot match a file |
| 74 * currently subject to analysis. | 74 * currently subject to analysis. |
| 75 */ | 75 */ |
| 76 public static final String GET_REACHABLE_SOURCES_INVALID_FILE = "GET_REACHABLE
_SOURCES_INVALID_FILE"; | 76 public static final String GET_REACHABLE_SOURCES_INVALID_FILE = "GET_REACHABLE
_SOURCES_INVALID_FILE"; |
| 77 | 77 |
| 78 /** | 78 /** |
| 79 * An "edit.importElements" request specified a FilePath that does not match a
file currently |
| 80 * subject to analysis. |
| 81 */ |
| 82 public static final String IMPORT_ELEMENTS_INVALID_FILE = "IMPORT_ELEMENTS_INV
ALID_FILE"; |
| 83 |
| 84 /** |
| 79 * A path passed as an argument to a request (such as analysis.reanalyze) is r
equired to be an | 85 * A path passed as an argument to a request (such as analysis.reanalyze) is r
equired to be an |
| 80 * analysis root, but isn't. | 86 * analysis root, but isn't. |
| 81 */ | 87 */ |
| 82 public static final String INVALID_ANALYSIS_ROOT = "INVALID_ANALYSIS_ROOT"; | 88 public static final String INVALID_ANALYSIS_ROOT = "INVALID_ANALYSIS_ROOT"; |
| 83 | 89 |
| 84 /** | 90 /** |
| 85 * The context root used to create an execution context does not exist. | 91 * The context root used to create an execution context does not exist. |
| 86 */ | 92 */ |
| 87 public static final String INVALID_EXECUTION_CONTEXT = "INVALID_EXECUTION_CONT
EXT"; | 93 public static final String INVALID_EXECUTION_CONTEXT = "INVALID_EXECUTION_CONT
EXT"; |
| 88 | 94 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 public static final String UNKNOWN_SOURCE = "UNKNOWN_SOURCE"; | 167 public static final String UNKNOWN_SOURCE = "UNKNOWN_SOURCE"; |
| 162 | 168 |
| 163 /** | 169 /** |
| 164 * The analysis server was requested to perform an action which is not support
ed. | 170 * The analysis server was requested to perform an action which is not support
ed. |
| 165 * | 171 * |
| 166 * This is a legacy error; it will be removed before the API reaches version 1
.0. | 172 * This is a legacy error; it will be removed before the API reaches version 1
.0. |
| 167 */ | 173 */ |
| 168 public static final String UNSUPPORTED_FEATURE = "UNSUPPORTED_FEATURE"; | 174 public static final String UNSUPPORTED_FEATURE = "UNSUPPORTED_FEATURE"; |
| 169 | 175 |
| 170 } | 176 } |
| OLD | NEW |