| 98 | |
| 99 | struct CompTask { |
| 100 | CompTask(const RequestId &id, const std::string &path, const Position &position, |
| 101 | std::unique_ptr<clang::CodeCompleteConsumer> Consumer, clang::CodeCompleteOptions CCOpts, |
| 102 | const OnComplete &on_complete) |
| 103 | : id(id), path(path), position(position), consumer(std::move(Consumer)), cc_opts(CCOpts), |
| 104 | on_complete(on_complete) {} |
| 105 | |
| 106 | RequestId id; |
| 107 | std::string path; |
nothing calls this directly
no outgoing calls
no test coverage detected