Chromium Code Reviews| Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/ErrorSeverity.java |
| diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/ErrorSeverity.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/ErrorSeverity.java |
| index 4bbbd4c3990250ba8580f086799256b73e26bac4..d79e193024f1934c1313dacec1375fa3934ef120 100644 |
| --- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/ErrorSeverity.java |
| +++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/ErrorSeverity.java |
| @@ -27,6 +27,12 @@ public enum ErrorSeverity { |
| NONE(" ", "none"), |
| /** |
| + * The severity representing a suggestion. Suggestions are not specified in the Dart language |
| + * specification, but provide information about best practices. |
| + */ |
| + SUGGESTION("s", "suggestion"), |
|
Brian Wilkerson
2013/05/31 15:28:58
nit: For consistency, "\"s\"" --> "\"S\""
danrubel
2013/05/31 19:43:45
Done.
|
| + |
| + /** |
| * The severity representing a warning. Warnings can become errors if the {@code -Werror} command |
| * line flag is specified. |
| */ |