Fix some FIXMEs.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
clang-tools-extra/clangd/CodeComplete.cpp | ||
---|---|---|
107 | I believe function still captures the intend better here, as you can only see the completion if you are literally completing for Foo.operator X() (btw, I am not even sure if we show completions for those, we might have another bug around this one). So I would keep it the same, but up to you. |
address comment
clang-tools-extra/clangd/CodeComplete.cpp | ||
---|---|---|
107 | hmm, I'm not sure we will actually encounter this case in practice, the completion didn't show up on Foo.^ or Foo.operat^or, Foo.opeator ^ shows completion results, but seems not running into this code path. Reverted back, and removed the fixme. |
I believe function still captures the intend better here, as you can only see the completion if you are literally completing for Foo.operator X() (btw, I am not even sure if we show completions for those, we might have another bug around this one).
So I would keep it the same, but up to you.