Chromium Code Reviews| 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." |