| 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 895 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 906 | 906 |
| 907 PackageNotFound: | 907 PackageNotFound: |
| 908 template: "Could not resolve the package '#name' in '#uri'." | 908 template: "Could not resolve the package '#name' in '#uri'." |
| 909 | 909 |
| 910 InvalidPackageUri: | 910 InvalidPackageUri: |
| 911 template: "Invalid package Uri '#uri':\n #string." | 911 template: "Invalid package Uri '#uri':\n #string." |
| 912 | 912 |
| 913 IntegerLiteralIsOutOfRange: | 913 IntegerLiteralIsOutOfRange: |
| 914 template: "The integer literal #lexeme can't be represented in 64 bits." | 914 template: "The integer literal #lexeme can't be represented in 64 bits." |
| 915 tip: "Try using BigInt (from 'dart:typed_data' library) if you need an integer
larger than 9,223,372,036,854,775,807 or less than -9,223,372,036,854,775,808." | 915 tip: "Try using BigInt (from 'dart:typed_data' library) if you need an integer
larger than 9,223,372,036,854,775,807 or less than -9,223,372,036,854,775,808." |
| 916 |
| OLD | NEW |