| 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 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 542 --fatal=errors | 542 --fatal=errors |
| 543 --fatal=warnings | 543 --fatal=warnings |
| 544 --fatal=nits | 544 --fatal=nits |
| 545 Makes messages of the given kinds fatal, that is, immediately stop the | 545 Makes messages of the given kinds fatal, that is, immediately stop the |
| 546 compiler with a non-zero exit-code. In --verbose mode, also display an | 546 compiler with a non-zero exit-code. In --verbose mode, also display an |
| 547 internal stack trace from the compiler. Multiple kinds can be separated
by | 547 internal stack trace from the compiler. Multiple kinds can be separated
by |
| 548 commas, for example, --fatal=errors,warnings. | 548 commas, for example, --fatal=errors,warnings. |
| 549 | 549 |
| 550 FastaCLIArgumentRequired: | 550 FastaCLIArgumentRequired: |
| 551 template: "Expected value after '#name'." | 551 template: "Expected value after '#name'." |
| 552 |
| 553 Unhandled: |
| 554 template: "Unhandled: #string in #name." |
| 555 |
| 556 Unimplemented: |
| 557 template: "Unimplemented: #string." |
| 558 |
| 559 Unexpected: |
| 560 template: "Expected '#string', but got '#name'." |
| 561 |
| 562 Unsupported: |
| 563 template: "Unsupported operation: '#name'." |
| OLD | NEW |