[PATCH] D79576: [AST] Fix the PrintQualifiedName for ObjC instance variable in class extension.

2020-05-19 Thread Haojian Wu via Phabricator via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rG6f56599c14af: [AST] Fix the PrintQualifiedName for ObjC instance variable in class extension. (authored by hokein). Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.

[PATCH] D79576: [AST] Fix the PrintQualifiedName for ObjC instance variable in class extension.

2020-05-07 Thread Haojian Wu via Phabricator via cfe-commits
hokein created this revision. hokein added a reviewer: sammccall. Herald added subscribers: usaxena95, kadircet, ilya-biryukov. Herald added a project: clang. Similar to property, we print the containing interface decl as the nested name specifier for ivar; otherwise we will get "::ivar_name". th