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 780 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
791 dart2jsCode: MISSING_MAIN | 791 dart2jsCode: MISSING_MAIN |
792 | 792 |
793 MissingInputFile: | 793 MissingInputFile: |
794 template: "Input file not found: #string." | 794 template: "Input file not found: #string." |
795 | 795 |
796 MissingSdkRoot: | 796 MissingSdkRoot: |
797 template: "SDK root directory not found: #string." | 797 template: "SDK root directory not found: #string." |
798 | 798 |
799 MissingSdkSummary: | 799 MissingSdkSummary: |
800 template: "SDK summary not found: #string." | 800 template: "SDK summary not found: #string." |
| 801 |
| 802 ThisAccessInFieldInitializer: |
| 803 template: "Can't access 'this' in a field initializer to read '#name'." |
| 804 |
| 805 ThisAsIdentifier: |
| 806 template: "Expected identifier, but got 'this'." |
| 807 |
| 808 SuperAsIdentifier: |
| 809 template: "Expected identifier, but got 'super'." |
OLD | NEW |