Details
Diff Detail
- Repository
- rCTE Clang Tools Extra
- Build Status
Buildable 19093 Build 19093: arc lint + arc unit
Event Timeline
clangd/index/Index.h | ||
---|---|---|
275 | Hmm, the returned results have URIs, not paths. It seems cleaner that the query params be URIs too. It could expose this information, or the index could accept a path here and do the conversion itself. This indexes need to be "thick" and deal with the URI infrastructure, but may be the simplest way. What's your thinking here? |
clangd/index/Index.h | ||
---|---|---|
275 |
Yeah, I was thinking the same. Also index symbols can have different schemes, and we might not have enough information to know which scheme is preferable until we see a candidate. |
clangd/index/Index.h | ||
---|---|---|
275 | OK, SGTM |
Hmm, the returned results have URIs, not paths.
It seems cleaner that the query params be URIs too.
However then we need a way to know which scheme the index expects.
It could expose this information, or the index could accept a path here and do the conversion itself. This indexes need to be "thick" and deal with the URI infrastructure, but may be the simplest way.
What's your thinking here?