diff options
| author | Jordan Rose <jordan_rose@apple.com> | 2012-10-10 16:42:25 +0000 |
|---|---|---|
| committer | Jordan Rose <jordan_rose@apple.com> | 2012-10-10 16:42:25 +0000 |
| commit | d01e83ab3e12808ab9bd3bbc8f6b0443575684c6 (patch) | |
| tree | 20ae97dc8c10be9a5f374915ec62315503195f33 /clang/lib/AST/DumpXML.cpp | |
| parent | effae0c8e16010bf93eeca32e28dd9bd45d36959 (diff) | |
| download | bcm5719-llvm-d01e83ab3e12808ab9bd3bbc8f6b0443575684c6.tar.gz bcm5719-llvm-d01e83ab3e12808ab9bd3bbc8f6b0443575684c6.zip | |
Rename ObjCMethodDecl::isSynthesized to isPropertyAccessor.
This more accurately reflects its use: this flag is set when a method
matches the getter or setter name for a property in the same class,
and does not actually specify whether or not the definition of the method
will be synthesized (either implicitly or explicitly with @synthesize).
This renames the setter and backing field as well, and changes the
(soon-to-be-obsolete?) XML dump format to use 'property_accessor'
instead of 'synthesized'.
llvm-svn: 165626
Diffstat (limited to 'clang/lib/AST/DumpXML.cpp')
| -rw-r--r-- | clang/lib/AST/DumpXML.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/DumpXML.cpp b/clang/lib/AST/DumpXML.cpp index 11e3b529a43..9a5e303606f 100644 --- a/clang/lib/AST/DumpXML.cpp +++ b/clang/lib/AST/DumpXML.cpp @@ -841,7 +841,7 @@ struct XMLDumper : public XMLDeclVisitor<XMLDumper>, setFlag("instance", D->isInstanceMethod()); setFlag("variadic", D->isVariadic()); - setFlag("synthesized", D->isSynthesized()); + setFlag("property_accessor", D->isPropertyAccessor()); setFlag("defined", D->isDefined()); setFlag("related_result_type", D->hasRelatedResultType()); } |

