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

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

Issue 470723003: Proposal for RefactoringMethodParameter. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Use better errors description Created 6 years, 4 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/RefactoringMethodParameterKind.java
diff --git a/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/ErrorSeverity.java b/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/RefactoringMethodParameterKind.java
similarity index 78%
copy from editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/ErrorSeverity.java
copy to editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/RefactoringMethodParameterKind.java
index 10f50b13f35247aa5079f42f3397dcedc558c518..7f424778d8b11b8e42b8f388093dbd0b2c552ca2 100644
--- a/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/ErrorSeverity.java
+++ b/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/RefactoringMethodParameterKind.java
@@ -17,16 +17,16 @@
package com.google.dart.server.generated.types;
/**
- * An enumeration of the possible severities of analysis errors.
+ * An enumeration of the kinds of parameters.
*
* @coverage dart.server.generated.types
*/
-public class ErrorSeverity {
+public class RefactoringMethodParameterKind {
- public static final String INFO = "INFO";
+ public static final String REQUIRED = "REQUIRED";
- public static final String WARNING = "WARNING";
+ public static final String POSITIONAL = "POSITIONAL";
- public static final String ERROR = "ERROR";
+ public static final String NAMED = "NAMED";
}

Powered by Google App Engine
This is Rietveld 408576698