[PATCH] D52928: [clangd] Fix a subtle case for GetBeginningOfIdentifier.

2018-10-05 Thread Sam McCall via Phabricator via cfe-commits
This revision was not accepted when it landed; it landed in state "Needs Review". This revision was automatically updated to reflect the committed changes. Closed by commit rCTE343844: [clangd] Fix a subtle case for GetBeginningOfIdentifier. (authored by sammccall, committed by ). Changed prior

[PATCH] D52928: [clangd] Fix a subtle case for GetBeginningOfIdentifier.

2018-10-05 Thread Sam McCall via Phabricator via cfe-commits
sammccall added a comment. (Stealing this to make some revisions after pair-programming) Repository: rCTE Clang Tools Extra https://reviews.llvm.org/D52928 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mail

[PATCH] D52928: [clangd] Fix a subtle case for GetBeginningOfIdentifier.

2018-10-05 Thread Haojian Wu via Phabricator via cfe-commits
hokein created this revision. hokein added a reviewer: sammccall. Herald added subscribers: kadircet, arphaman, jkorous, MaskRay, ioeric, ilya-biryukov. The following case 1 was incorrectly regarded as case 2: MACRO(foo->^function()) Also add few more tests for macro. Repository: rCTE Cla