Details
Details
Diff Detail
Diff Detail
- Repository
- rCTE Clang Tools Extra
- Build Status
Buildable 13154 Build 13154: arc lint + arc unit
Event Timeline
clangd/index/FileMemIndexManager.h | ||
---|---|---|
23 ↗ | (On Diff #127075) | Discussed offline a bit:
|
unittests/clangd/IndexTests.cpp | ||
116 | Can you make this build() returning a ParsedAST instead? It adds a little duplication to the callsite: M.update("f1", build("f1", "...code...")); but it makes this a much more "pure" function, and a good candidate for pulling out into a helper for other tests. |
Comment Actions
I don't see FileSymbols.{h,cpp} being deleted, but maybe I'm bad at reading diffs.
clangd/index/FileIndex.h | ||
---|---|---|
9 | Add a file-comment about what this is and how it's going to be used? | |
58 | override |
Add a file-comment about what this is and how it's going to be used?
At the moment almost all the comments are on FileSymbols and implementation-focused, while FileIndex is the interesting class.