| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014, the Dart project authors. | 2 * Copyright (c) 2014, 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 29 matching lines...) Expand all Loading... |
| 40 */ | 40 */ |
| 41 public static final String FORMAT_WITH_ERRORS = "FORMAT_WITH_ERRORS"; | 41 public static final String FORMAT_WITH_ERRORS = "FORMAT_WITH_ERRORS"; |
| 42 | 42 |
| 43 /** | 43 /** |
| 44 * An "analysis.getErrors" request specified a FilePath which does not match a
file currently | 44 * An "analysis.getErrors" request specified a FilePath which does not match a
file currently |
| 45 * subject to analysis. | 45 * subject to analysis. |
| 46 */ | 46 */ |
| 47 public static final String GET_ERRORS_INVALID_FILE = "GET_ERRORS_INVALID_FILE"
; | 47 public static final String GET_ERRORS_INVALID_FILE = "GET_ERRORS_INVALID_FILE"
; |
| 48 | 48 |
| 49 /** | 49 /** |
| 50 * An "analysis.getErrors" request specified a FilePath which does not match a
file currently |
| 51 * subject to analysis. |
| 52 */ |
| 53 public static final String GET_NAVIGATION_INVALID_FILE = "GET_NAVIGATION_INVAL
ID_FILE"; |
| 54 |
| 55 /** |
| 50 * A path passed as an argument to a request (such as analysis.reanalyze) is r
equired to be an | 56 * A path passed as an argument to a request (such as analysis.reanalyze) is r
equired to be an |
| 51 * analysis root, but isn't. | 57 * analysis root, but isn't. |
| 52 */ | 58 */ |
| 53 public static final String INVALID_ANALYSIS_ROOT = "INVALID_ANALYSIS_ROOT"; | 59 public static final String INVALID_ANALYSIS_ROOT = "INVALID_ANALYSIS_ROOT"; |
| 54 | 60 |
| 55 /** | 61 /** |
| 56 * The context root used to create an execution context does not exist. | 62 * The context root used to create an execution context does not exist. |
| 57 */ | 63 */ |
| 58 public static final String INVALID_EXECUTION_CONTEXT = "INVALID_EXECUTION_CONT
EXT"; | 64 public static final String INVALID_EXECUTION_CONTEXT = "INVALID_EXECUTION_CONT
EXT"; |
| 59 | 65 |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 public static final String UNKNOWN_SOURCE = "UNKNOWN_SOURCE"; | 133 public static final String UNKNOWN_SOURCE = "UNKNOWN_SOURCE"; |
| 128 | 134 |
| 129 /** | 135 /** |
| 130 * The analysis server was requested to perform an action which is not support
ed. | 136 * The analysis server was requested to perform an action which is not support
ed. |
| 131 * | 137 * |
| 132 * This is a legacy error; it will be removed before the API reaches version 1
.0. | 138 * This is a legacy error; it will be removed before the API reaches version 1
.0. |
| 133 */ | 139 */ |
| 134 public static final String UNSUPPORTED_FEATURE = "UNSUPPORTED_FEATURE"; | 140 public static final String UNSUPPORTED_FEATURE = "UNSUPPORTED_FEATURE"; |
| 135 | 141 |
| 136 } | 142 } |
| OLD | NEW |