Details
Diff Detail
- Repository
- rCTE Clang Tools Extra
- Build Status
Buildable 23587 Build 23586: arc lint + arc unit
Event Timeline
clangd/index/dex/dexp/Dexp.cpp | ||
---|---|---|
203 | filter -> regular expression | |
222 | you're requiring a full match, and matching the URI, which is going to confuse users who try to use a filter of /usr/include/.* or so. Consider just using the URI path? | |
246 | I'm not sure "by qualified name" is a good idea, at least as the only option:
|
Address review comments:
- provide query by qualified name (with -name)
- add -name support for Lookup.
clangd/index/dex/dexp/Dexp.cpp | ||
---|---|---|
246 | Sounds fair enough. I think query the symbol by "qualified_name" would be more convenient and practical when we use the tool. ID is not quite straight-forward. |
clangd/index/dex/dexp/Dexp.cpp | ||
---|---|---|
65 | I don't think this is reasonable behavior. I'd suggest either of:
| |
173 | nit: just "id" with no dash |
clangd/index/dex/dexp/Dexp.cpp | ||
---|---|---|
185 | I meant, why does the local variable "IDs" exist at all? Why not just populate Request.IDs directly? |
Are you sure you want both foo to mean ::foo only, rather than accept any scope and the user can type ::foo for explicitly global scope?