| Index: pkg/front_end/messages.yaml
|
| diff --git a/pkg/front_end/messages.yaml b/pkg/front_end/messages.yaml
|
| index 28c2a3e157097d2bf21ceca0d4a52f8091a3daad..30ad9b2d6018968a9644ec0929a2c10e2d4b3a1a 100644
|
| --- a/pkg/front_end/messages.yaml
|
| +++ b/pkg/front_end/messages.yaml
|
| @@ -794,13 +794,16 @@ MissingMain:
|
| tip: "Try adding a method named 'main' to your program."
|
| dart2jsCode: MISSING_MAIN
|
|
|
| -MissingInputFile:
|
| +MissingInput:
|
| + template: "No input file provided to the compiler."
|
| +
|
| +InputFileNotFound:
|
| template: "Input file not found: #string."
|
|
|
| -MissingSdkRoot:
|
| +SdkRootNotFound:
|
| template: "SDK root directory not found: #string."
|
|
|
| -MissingSdkSummary:
|
| +SdkSummaryNotFound:
|
| template: "SDK summary not found: #string."
|
|
|
| ThisAccessInFieldInitializer:
|
| @@ -859,3 +862,16 @@ ExpectedAnInitializer:
|
|
|
| NotAnLvalue:
|
| template: "Can't assign to this."
|
| +
|
| +CannotReadPackagesFile:
|
| + template: "Unable to read '.packages' file:\n #string."
|
| +
|
| +CantInferPackagesFromManyInputs:
|
| + template: "Cannot infer a .packages file when compiling multiple inputs."
|
| + tip: "Try specifying the file explicitly with the --packages option."
|
| +
|
| +PackageNotFound:
|
| + template: "Could not resolve the package '#name' in '#uri'."
|
| +
|
| +InvalidPackageUri:
|
| + template: "Invalid package Uri '#uri':\n #string."
|
|
|