Chromium Code Reviews| Index: lib/compiler/implementation/warnings.dart |
| =================================================================== |
| --- lib/compiler/implementation/warnings.dart (revision 12420) |
| +++ lib/compiler/implementation/warnings.dart (working copy) |
| @@ -88,6 +88,8 @@ |
| "'Object' cannot have a super initializer"); |
| static const DUPLICATE_SUPER_INITIALIZER = const MessageKind( |
| 'cannot have more than one super initializer'); |
| + static const INVALID_NUMBER_OF_ARGUMENTS = const MessageKind( |
| + "invalid number of arguments passed to #{1}"); |
|
kasperl
2012/09/17 09:01:45
Doesn't seem quite accurate when there's a mismatc
|
| static const NO_MATCHING_CONSTRUCTOR = const MessageKind( |
| "super call arguments and constructor parameters don't match"); |
| static const NO_MATCHING_CONSTRUCTOR_FOR_IMPLICIT = const MessageKind( |