Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(950)

Unified Diff: pkg/front_end/messages.yaml

Issue 2979003002: support resolving .packages in FE (Closed)
Patch Set: cl comments Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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."
« no previous file with comments | « pkg/front_end/lib/src/fasta/uri_translator_impl.dart ('k') | pkg/front_end/test/dependency_grapher_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698