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

Side by Side Diff: editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/RequestErrorCode.java

Issue 904733003: Rework requests in execution domain (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Clean-up Created 5 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 | Annotate | Revision Log
OLDNEW
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 24 matching lines...) Expand all
35 */ 35 */
36 public static final String FORMAT_INVALID_FILE = "FORMAT_INVALID_FILE"; 36 public static final String FORMAT_INVALID_FILE = "FORMAT_INVALID_FILE";
37 37
38 /** 38 /**
39 * An "analysis.getErrors" request specified a FilePath which does not match a file currently 39 * An "analysis.getErrors" request specified a FilePath which does not match a file currently
40 * subject to analysis. 40 * subject to analysis.
41 */ 41 */
42 public static final String GET_ERRORS_INVALID_FILE = "GET_ERRORS_INVALID_FILE" ; 42 public static final String GET_ERRORS_INVALID_FILE = "GET_ERRORS_INVALID_FILE" ;
43 43
44 /** 44 /**
45 * The context root used to create an execution context does not exist.
46 */
47 public static final String INVALID_EXECUTION_CONTEXT = "INVALID_EXECUTION_CONT EXT";
48
49 /**
45 * An analysis.updateContent request contained a ChangeContentOverlay object w hich can't be 50 * An analysis.updateContent request contained a ChangeContentOverlay object w hich can't be
46 * applied, due to an edit having an offset or length that is out of range. 51 * applied, due to an edit having an offset or length that is out of range.
47 */ 52 */
48 public static final String INVALID_OVERLAY_CHANGE = "INVALID_OVERLAY_CHANGE"; 53 public static final String INVALID_OVERLAY_CHANGE = "INVALID_OVERLAY_CHANGE";
49 54
50 /** 55 /**
51 * One of the method parameters was invalid. 56 * One of the method parameters was invalid.
52 */ 57 */
53 public static final String INVALID_PARAMETER = "INVALID_PARAMETER"; 58 public static final String INVALID_PARAMETER = "INVALID_PARAMETER";
54 59
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 public static final String UNKNOWN_REQUEST = "UNKNOWN_REQUEST"; 105 public static final String UNKNOWN_REQUEST = "UNKNOWN_REQUEST";
101 106
102 /** 107 /**
103 * The analysis server was requested to perform an action which is not support ed. 108 * The analysis server was requested to perform an action which is not support ed.
104 * 109 *
105 * This is a legacy error; it will be removed before the API reaches version 1 .0. 110 * This is a legacy error; it will be removed before the API reaches version 1 .0.
106 */ 111 */
107 public static final String UNSUPPORTED_FEATURE = "UNSUPPORTED_FEATURE"; 112 public static final String UNSUPPORTED_FEATURE = "UNSUPPORTED_FEATURE";
108 113
109 } 114 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698