| Index: compiler/java/com/google/dart/compiler/ErrorSeverity.java
|
| diff --git a/compiler/java/com/google/dart/compiler/ErrorSeverity.java b/compiler/java/com/google/dart/compiler/ErrorSeverity.java
|
| index 2c486893ef390b5d820639a7fe569bc6436206f1..7cda99517823ea7870ee9aa8a15121b539d5cf5e 100644
|
| --- a/compiler/java/com/google/dart/compiler/ErrorSeverity.java
|
| +++ b/compiler/java/com/google/dart/compiler/ErrorSeverity.java
|
| @@ -11,7 +11,12 @@ public enum ErrorSeverity {
|
| /**
|
| * Warning, may become error with -Werror command line flag.
|
| */
|
| - WARNING("W");
|
| + WARNING("W"),
|
| + /**
|
| + * Info, not considered an official warning
|
| + */
|
| + INFO("I");
|
| +
|
| final String name;
|
|
|
| ErrorSeverity(String name) {
|
|
|