OLD | NEW |
---|---|
1 # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file |
2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 # Each entry in this map corresponds to a diagnostic message. Ideally, each | 5 # Each entry in this map corresponds to a diagnostic message. Ideally, each |
6 # entry contains three parts: | 6 # entry contains three parts: |
7 # | 7 # |
8 # 1. A message template (template). | 8 # 1. A message template (template). |
9 # | 9 # |
10 # 2. A suggestion for how to correct the problem (tip). | 10 # 2. A suggestion for how to correct the problem (tip). |
(...skipping 813 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
824 template: "Superclass doesn't have a method named '#name' with matching argume nts." | 824 template: "Superclass doesn't have a method named '#name' with matching argume nts." |
825 | 825 |
826 SuperclassHasNoGetter: | 826 SuperclassHasNoGetter: |
827 template: "Superclass has no getter named '#name'." | 827 template: "Superclass has no getter named '#name'." |
828 | 828 |
829 SuperclassHasNoSetter: | 829 SuperclassHasNoSetter: |
830 template: "Superclass has no setter named '#name'." | 830 template: "Superclass has no setter named '#name'." |
831 | 831 |
832 SuperclassHasNoMethod: | 832 SuperclassHasNoMethod: |
833 template: "Superclass has no method named '#name'." | 833 template: "Superclass has no method named '#name'." |
834 | |
835 SuperclassHasNoDefaultConstructor: | |
836 template: "The superclass, '#name' has no unnamed constructor that takes no ar guments." | |
Johnni Winther
2017/07/13 09:15:46
superclass, '#name'
->
superclass '#name'
or
ahe
2017/07/13 12:32:27
Done.
| |
837 | |
838 ConstConstructorNonFinalField: | |
839 template: "Constructor is marked 'const' so all fields must be final." | |
840 | |
841 ConstConstructorNonFinalFieldCause: | |
842 template: "Field isn't final, but constructor is 'const'." | |
OLD | NEW |