| Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/StaticWarningCode.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/StaticWarningCode.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/StaticWarningCode.java
|
| index 02095bee82dda0711b398e7bd146cf814729f289..5c8857c69988a98723817a4ff262d8215f47f59f 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/StaticWarningCode.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/StaticWarningCode.java
|
| @@ -289,6 +289,12 @@ public enum StaticWarningCode implements ErrorCode {
|
| FINAL_NOT_INITIALIZED("The final variable '%s' must be initialized"),
|
|
|
| /**
|
| + * 15.5 Function Types: It is a static warning if a concrete class implements Function and does
|
| + * not have a concrete method named call().
|
| + */
|
| + FUNCTION_WITHOUT_CALL("Concrete classes that implement Function must implement the method call()"),
|
| +
|
| + /**
|
| * 14.1 Imports: It is a static warning to import two different libraries with the same name.
|
| *
|
| * @param uri1 the uri pointing to a first library
|
|
|