File tree Expand file tree Collapse file tree 3 files changed +0
-10
lines changed
Expand file tree Collapse file tree 3 files changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,6 @@ struct BuildResult {
103103 eventide::serde::RawValue result_json; // /< Completion/SignatureHelp result
104104};
105105
106- // === Notifications ===
107106
108107struct DocumentUpdateParams {
109108 std::string path;
@@ -120,7 +119,6 @@ struct EvictedParams {
120119
121120} // namespace clice::worker
122121
123- // === clice/ LSP Extension Types ===
124122
125123namespace clice ::ext {
126124
@@ -179,7 +177,6 @@ struct RequestTraits<clice::worker::BuildParams> {
179177 constexpr inline static std::string_view method = " clice/worker/build" ;
180178};
181179
182- // === Notifications ===
183180
184181template <>
185182struct NotificationTraits <clice::worker::DocumentUpdateParams> {
Original file line number Diff line number Diff line change @@ -83,7 +83,6 @@ class WorkerPool {
8383 bool spawn_worker (const std::string& self_path, bool stateful, std::uint64_t memory_limit);
8484};
8585
86- // --- Template implementations ---------------------------------------------------
8786
8887template <typename Params>
8988RequestResult<Params> WorkerPool::send_stateful (std::uint32_t path_id,
Original file line number Diff line number Diff line change @@ -20,9 +20,7 @@ namespace clice {
2020
2121namespace et = eventide;
2222
23- // ============================================================================
2423// DependencyGraph implementation
25- // ============================================================================
2624
2725void DependencyGraph::add_module (llvm::StringRef module_name, std::uint32_t path_id) {
2826 auto & ids = module_to_path[module_name];
@@ -205,9 +203,7 @@ std::vector<std::uint32_t> DependencyGraph::find_include_chain(std::uint32_t hos
205203 return chain;
206204}
207205
208- // ============================================================================
209206// Wavefront BFS scanner — async implementation
210- // ============================================================================
211207
212208namespace {
213209
@@ -819,9 +815,7 @@ et::task<> scan_impl(CompilationDatabase& cdb,
819815
820816} // namespace
821817
822- // ============================================================================
823818// Public sync entry point
824- // ============================================================================
825819
826820ScanReport scan_dependency_graph (CompilationDatabase& cdb,
827821 PathPool& path_pool,
You can’t perform that action at this time.
0 commit comments