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 642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
653 InternalProblemMissingContext: | 653 InternalProblemMissingContext: |
654 template: "Compiler cannot run without a compiler context." | 654 template: "Compiler cannot run without a compiler context." |
655 tip: "Are calls to the compiler wrapped in CompilerContext.runInContext?" | 655 tip: "Are calls to the compiler wrapped in CompilerContext.runInContext?" |
656 | 656 |
657 InternalProblemProvidedBothCompileSdkAndSdkSummary: | 657 InternalProblemProvidedBothCompileSdkAndSdkSummary: |
658 template: "The compileSdk and sdkSummary options are mutually exclusive" | 658 template: "The compileSdk and sdkSummary options are mutually exclusive" |
659 | 659 |
660 InternalProblemUriMissingScheme: | 660 InternalProblemUriMissingScheme: |
661 template: "The URI '#uri' has no scheme." | 661 template: "The URI '#uri' has no scheme." |
662 | 662 |
| 663 InternalProblemExportedLibraryNotLoaded: |
| 664 template: "The library '#uri' isn't loaded, but '#uri2' exports it." |
| 665 |
663 InternalVerificationError: | 666 InternalVerificationError: |
664 template: "Verification of the generated program failed: #string." | 667 template: "Verification of the generated program failed: #string." |
665 | 668 |
666 LocalDefinitionHidesExport: | 669 LocalDefinitionHidesExport: |
667 template: "Local definition of '#name' hides export from '#uri'." | 670 template: "Local definition of '#name' hides export from '#uri'." |
668 | 671 |
669 LocalDefinitionHidesImport: | 672 LocalDefinitionHidesImport: |
670 template: "Local definition of '#name' hides import from '#uri'." | 673 template: "Local definition of '#name' hides import from '#uri'." |
671 | 674 |
672 ExportHidesExport: | 675 ExportHidesExport: |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
928 PackageNotFound: | 931 PackageNotFound: |
929 template: "Could not resolve the package '#name' in '#uri'." | 932 template: "Could not resolve the package '#name' in '#uri'." |
930 | 933 |
931 InvalidPackageUri: | 934 InvalidPackageUri: |
932 template: "Invalid package Uri '#uri':\n #string." | 935 template: "Invalid package Uri '#uri':\n #string." |
933 | 936 |
934 IntegerLiteralIsOutOfRange: | 937 IntegerLiteralIsOutOfRange: |
935 template: "The integer literal #lexeme can't be represented in 64 bits." | 938 template: "The integer literal #lexeme can't be represented in 64 bits." |
936 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." | 939 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." |
937 | 940 |
OLD | NEW |