Chromium Code Reviews| Index: sdk/lib/_internal/compiler/implementation/warnings.dart |
| diff --git a/sdk/lib/_internal/compiler/implementation/warnings.dart b/sdk/lib/_internal/compiler/implementation/warnings.dart |
| index 36c19337529ab3c6dcc492dbc57f9f2181529f6a..c5e4e074e2b175bf082816bfa0389af01531b4da 100644 |
| --- a/sdk/lib/_internal/compiler/implementation/warnings.dart |
| +++ b/sdk/lib/_internal/compiler/implementation/warnings.dart |
| @@ -392,6 +392,9 @@ Length: #{length}'''); |
| static const COMPILER_CRASHED = const MessageKind( |
| "Error: The compiler crashed when compiling this element."); |
| + static const ILLEGAL_STATIC = const MessageKind( |
| + "Error: Static is only allowed on functions declared in a class."); |
|
Johnni Winther
2013/03/07 17:39:51
Static -> static or 'static' to avoid capitalizing
karlklose
2013/03/08 09:15:00
Done.
|
| + |
| static const PLEASE_REPORT_THE_CRASH = const MessageKind(''' |
| The compiler is broken. |