Index: pkg/front_end/messages.yaml |
diff --git a/pkg/front_end/messages.yaml b/pkg/front_end/messages.yaml |
index 722390e88a6bcd8a24101ddf2df57609094e717f..991bc37b8f1dc44532e5e9eb74e557110e3fe0f4 100644 |
--- a/pkg/front_end/messages.yaml |
+++ b/pkg/front_end/messages.yaml |
@@ -831,3 +831,12 @@ SuperclassHasNoSetter: |
SuperclassHasNoMethod: |
template: "Superclass has no method named '#name'." |
+ |
+SuperclassHasNoDefaultConstructor: |
+ template: "The superclass, '#name' has no unnamed constructor that takes no arguments." |
Johnni Winther
2017/07/13 09:15:46
superclass, '#name'
->
superclass '#name'
or
ahe
2017/07/13 12:32:27
Done.
|
+ |
+ConstConstructorNonFinalField: |
+ template: "Constructor is marked 'const' so all fields must be final." |
+ |
+ConstConstructorNonFinalFieldCause: |
+ template: "Field isn't final, but constructor is 'const'." |