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

Unified Diff: pkg/front_end/messages.yaml

Issue 2977693002: Remove deprecated methods from ClassBuilder. (Closed)
Patch Set: Spelling of unnamed. 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..b92ed943836d7004c7e3a3b951aa6fd636881e66 100644
--- a/pkg/front_end/messages.yaml
+++ b/pkg/front_end/messages.yaml
@@ -639,3 +639,57 @@ DuplicatedExport:
DuplicatedImport:
template: "'#name' is imported from both '#uri' and '#uri2'."
+
+CyclicClassHierarchy:
+ template: "'#name' is a supertype of itself via '#string'."
+
+ExtendingEnum:
+ template: "'#name' is an enum and can't be extended or implemented."
+
+ExtendingRestricted:
+ template: "'#name' is restricted and can't be extended or implemented."
+
+NoUnnamedConstructorInObject:
+ template: "'Object' has no unnamed constructor."
+
+IllegalMixinDueToConstructors:
+ template: "Can't use '#name' as a mixin because it has constructors."
+
+IllegalMixinDueToConstructorsCause:
+ template: "This constructor prevents using '#name' as a mixin."
+
+ConflictsWithConstructor:
+ template: "Conflicts with constructor '#name'."
+
+ConflictsWithFactory:
+ template: "Conflicts with factory '#name'."
+
+ConflictsWithMember:
+ template: "Conflicts with member '#name'."
+
+ConflictsWithSetter:
+ template: "Conflicts with setter '#name'."
+
+ConflictsWithTypeVariable:
+ template: "Conflicts with type variable '#name'."
+
+ConflictsWithTypeVariableCause:
+ template: "This is the type variable."
+
+IllegalMixin:
+ template: "The type '#name' can't be mixed in."
+
+OverrideTypeVariablesMismatch:
+ template: "Declared type variables of '#name' doesn't match those on overridden method '#name2'."
+
+OverrideMismatchNamedParameter:
+ template: "The method '#name' doesn't have the named parameter '#name2' of overriden method '#name3'."
+
+OverrideFewerNamedArguments:
+ template: "The method '#name' has fewer named arguments than those of overridden method '#name2'."
+
+OverrideFewerPositionalArguments:
+ template: "The method '#name' has fewer positional arguments than those of overridden method '#name2'."
+
+OverrideMoreRequiredArguments:
+ template: "The method '#name' has more required arguments than those of overridden method '#name2'."
« no previous file with comments | « pkg/front_end/lib/src/fasta/source/source_loader.dart ('k') | pkg/front_end/tool/_fasta/generate_messages.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698