]> granicus.if.org Git - clang/commitdiff
Trying to improve on a diagnostics for properties.
authorFariborz Jahanian <fjahanian@apple.com>
Fri, 23 Apr 2010 17:22:07 +0000 (17:22 +0000)
committerFariborz Jahanian <fjahanian@apple.com>
Fri, 23 Apr 2010 17:22:07 +0000 (17:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102187 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/DiagnosticSemaKinds.td
test/SemaObjC/continuation-class-err.m

index 16de2012c236d5355d1cf18c288057017f024dd2..f61cd21795560a58aa1cee66791103e90836d938 100644 (file)
@@ -323,8 +323,8 @@ def warn_atomic_property_rule : Warning<
   "writable atomic property %0 cannot pair a synthesized setter/getter "
   "with a user defined setter/getter">;
 def err_use_continuation_class : Error<
-  "property declaration in continuation class of %0 is to change a 'readonly' "
-  "property to 'readwrite'">;
+  "illegal declaration of property in continuation class %0"
+  " - attribute must be readwrite, while its primary must be readonly">;
 def err_continuation_class : Error<"continuation class has no primary class">;
 def err_property_type : Error<"property cannot have array or function type %0">;
 def error_missing_property_context : Error<
index 214c4e5b30b5e323f89886acf53802873eb8d2c5..9c14d37cedc84abac558fc36ecafb74ba4f2c629 100644 (file)
@@ -12,7 +12,7 @@
 
 @interface ReadOnly ()
 @property(readwrite, copy) id object;  // expected-warning {{property attribute in continuation class does not match the primary class}}
-@property(readonly) id object1; // expected-error {{property declaration in continuation class of 'ReadOnly' is to change a 'readonly' property to 'readwrite'}}
+@property(readonly) id object1; // expected-error {{illegal declaration of property in continuation class 'ReadOnly' - attribute must be}}
 @property (readwrite, assign) int indentLevel; // OK. assign the the default in any case.
 @end
 
@@ -31,8 +31,8 @@
 @end
 
 @interface Bar ()
-@property (copy) id foo;       // expected-error {{property declaration in continuation class of 'Bar' is to change a 'readonly' property to 'readwrite'}}
-@property (copy) id fee;       // expected-error {{property declaration in continuation class of 'Bar' is to change a 'readonly' property to 'readwrite'}}
+@property (copy) id foo;       // expected-error {{illegal declaration of property in continuation class 'Bar' - attribute must be}}
+@property (copy) id fee;       // expected-error {{illegal declaration of property in continuation class 'Bar' - attribute must be}}
 @end
 
 @implementation Bar