| 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 622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 633 InternalProblemBodyOnAbstractMethod: | 633 InternalProblemBodyOnAbstractMethod: |
| 634 template: "Attempting to set body on abstract method." | 634 template: "Attempting to set body on abstract method." |
| 635 | 635 |
| 636 InternalProblemMissingContext: | 636 InternalProblemMissingContext: |
| 637 template: "Compiler cannot run without a compiler context." | 637 template: "Compiler cannot run without a compiler context." |
| 638 tip: "Are calls to the compiler wrapped in CompilerContext.runInContext?" | 638 tip: "Are calls to the compiler wrapped in CompilerContext.runInContext?" |
| 639 | 639 |
| 640 InternalProblemProvidedBothCompileSdkAndSdkSummary: | 640 InternalProblemProvidedBothCompileSdkAndSdkSummary: |
| 641 template: "The compileSdk and sdkSummary options are mutually exclusive" | 641 template: "The compileSdk and sdkSummary options are mutually exclusive" |
| 642 | 642 |
| 643 InternalProblemUriMissingScheme: |
| 644 template: "The URI '#uri' has no scheme." |
| 645 |
| 643 InternalVerificationError: | 646 InternalVerificationError: |
| 644 template: "Verification of the generated program failed: #string." | 647 template: "Verification of the generated program failed: #string." |
| 645 | 648 |
| 646 LocalDefinitionHidesExport: | 649 LocalDefinitionHidesExport: |
| 647 template: "Local definition of '#name' hides export from '#uri'." | 650 template: "Local definition of '#name' hides export from '#uri'." |
| 648 | 651 |
| 649 LocalDefinitionHidesImport: | 652 LocalDefinitionHidesImport: |
| 650 template: "Local definition of '#name' hides import from '#uri'." | 653 template: "Local definition of '#name' hides import from '#uri'." |
| 651 | 654 |
| 652 ExportHidesExport: | 655 ExportHidesExport: |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 908 PackageNotFound: | 911 PackageNotFound: |
| 909 template: "Could not resolve the package '#name' in '#uri'." | 912 template: "Could not resolve the package '#name' in '#uri'." |
| 910 | 913 |
| 911 InvalidPackageUri: | 914 InvalidPackageUri: |
| 912 template: "Invalid package Uri '#uri':\n #string." | 915 template: "Invalid package Uri '#uri':\n #string." |
| 913 | 916 |
| 914 IntegerLiteralIsOutOfRange: | 917 IntegerLiteralIsOutOfRange: |
| 915 template: "The integer literal #lexeme can't be represented in 64 bits." | 918 template: "The integer literal #lexeme can't be represented in 64 bits." |
| 916 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." | 919 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." |
| 917 | 920 |
| OLD | NEW |