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 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
576 template: "Internal error: Unhandled #string in #string2." | 576 template: "Internal error: Unhandled #string in #string2." |
577 | 577 |
578 Unimplemented: | 578 Unimplemented: |
579 template: "Internal error: Unimplemented #string." | 579 template: "Internal error: Unimplemented #string." |
580 | 580 |
581 Unexpected: | 581 Unexpected: |
582 template: "Internal error: Expected '#string', but got '#string2'." | 582 template: "Internal error: Expected '#string', but got '#string2'." |
583 | 583 |
584 Unsupported: | 584 Unsupported: |
585 template: "Internal error: Unsupported operation: '#name'." | 585 template: "Internal error: Unsupported operation: '#name'." |
| 586 |
| 587 InternalProblemSuperclassNotFound: |
| 588 template: "Internal error: Superclass not found '#name'." |
| 589 |
| 590 InternalProblemNotFound: |
| 591 template: "Internal error: Couldn't find '#name'." |
| 592 |
| 593 InternalProblemNotFoundIn: |
| 594 template: "Internal error: Couldn't find '#name' in '#name2'." |
| 595 |
| 596 InternalProblemPrivateConstructorAccess: |
| 597 template: "Internal error: Can't access private constructor '#name'." |
| 598 |
| 599 InternalProblemConstructorNotFound: |
| 600 template: "Internal error: No constructor named '#name' in '#uri'." |
| 601 |
| 602 InternalProblemExtendingUnmodifiableScope: |
| 603 template: "Can't extend an unmodifiable scope." |
| 604 |
| 605 InternalProblemPreviousTokenNotFound: |
| 606 template: "Couldn't find previous token." |
| 607 |
| 608 InternalProblemStackNotEmpty: |
| 609 template: "Internal error: #name.stack isn't empty:\n #string" |
| 610 |
| 611 InternalProblemAlreadyInitialized: |
| 612 template: "Internal error: Attempt to set initializer on field without initial
izer." |
| 613 |
| 614 InternalProblemBodyOnAbstractMethod: |
| 615 template: "Internal error: Attempting to set body on abstract method." |
OLD | NEW |