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

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

Issue 604333002: Specify when 'sortMembers' will return an error. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Specify the specific error codes Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/RequestErrorCode.java
diff --git a/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/RequestErrorCode.java b/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/RequestErrorCode.java
index 5e464d74d4540d2a50e1dec1176b4079e942353a..69875e93ff7b4d89c1c0afa6780256aae6d2568c 100644
--- a/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/RequestErrorCode.java
+++ b/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/RequestErrorCode.java
@@ -59,6 +59,17 @@ public class RequestErrorCode {
public static final String SERVER_ERROR = "SERVER_ERROR";
/**
+ * An "edit.sortMembers" request specified a FilePath which does not match a Dart file in an
+ * analysis root.
+ */
+ public static final String SORT_MEMBERS_INVALID_FILE = "SORT_MEMBERS_INVALID_FILE";
+
+ /**
+ * An "edit.sortMembers" request specified a Dart file that has scan or parse errors.
+ */
+ public static final String SORT_MEMBERS_PARSE_ERRORS = "SORT_MEMBERS_PARSE_ERRORS";
+
+ /**
* An "analysis.setPriorityFiles" request includes one or more files that are not being analyzed.
*
* This is a legacy error; it will be removed before the API reaches version 1.0.

Powered by Google App Engine
This is Rietveld 408576698