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

Unified Diff: pkg/front_end/messages.yaml

Issue 2979623002: Use messages for (some) public API errors (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 ad9dc0ac39bdfdecbd112958b9bee00d83de2985..89f64d7b4e4cd083b272df3cbfd7c92d7690a98a 100644
--- a/pkg/front_end/messages.yaml
+++ b/pkg/front_end/messages.yaml
@@ -622,6 +622,9 @@ InternalProblemAlreadyInitialized:
InternalProblemBodyOnAbstractMethod:
template: "Attempting to set body on abstract method."
+InternalVerificationError:
+ template: "Verification of the generated program failed: #string."
+
LocalDefinitionHidesExport:
template: "Local definition of '#name' hides export from '#uri'."
@@ -639,3 +642,17 @@ DuplicatedExport:
DuplicatedImport:
template: "'#name' is imported from both '#uri' and '#uri2'."
+
+MissingMain:
+ template: "No 'main' method found."
+ tip: "Try adding a method named 'main' to your program."
+ dart2jsCode: MISSING_MAIN
+
+MissingInputFile:
+ template: "Input file not found: #string."
ahe 2017/07/13 00:03:38 #uri here and below?
Siggi Cherem (dart-lang) 2017/07/18 00:32:57 Done.
+
+MissingSdkRoot:
+ template: "SDK root directory not found: #string."
+
+MissingSdkSummary:
+ template: "SDK summary not found: #string."

Powered by Google App Engine
This is Rietveld 408576698