This is an archive of the discontinued LLVM Phabricator instance.

[clangd] Remove FilterText from the index.
ClosedPublic

Authored by sammccall on Jun 20 2018, 9:04 AM.

Details

Summary

It's almost always identical to Name, and in fact we never used it (we used name
instead).
The only case where they differ is objc method selectors (foo: vs foo:bar:).
We can live with the former for both name and filterText, so I've made that
change too.

Diff Detail

Repository
rL LLVM

Event Timeline

sammccall created this revision.Jun 20 2018, 9:04 AM
sammccall updated this revision to Diff 152108.Jun 20 2018, 9:56 AM

use foo: instead of foo:bar: for name.

sammccall edited the summary of this revision. (Show Details)Jun 20 2018, 10:03 AM
ioeric accepted this revision.Jun 21 2018, 12:57 AM

lgtm

This revision is now accepted and ready to land.Jun 21 2018, 12:57 AM
This revision was automatically updated to reflect the committed changes.