kadircet added a comment.

thanks this LG, but I suppose we can do some more trimming. after the trimming 
we are introducing a single partial specialization which is luckily more 
specialized than existing notification-binding specialization, so all should be 
fine.


================
Comment at: clang-tools-extra/clangd/ClangdLSPServer.cpp:262
+  template <typename Result>
+  void bind(const char *Method,
+            void (ClangdLSPServer::*Handler)(const NoParams &,
----------------
why do we need this one ?


================
Comment at: clang-tools-extra/clangd/ClangdLSPServer.cpp:331
+  void bind<NoParams>(const char *Method,
+                      void (ClangdLSPServer::*Handler)(const NoParams &)) {
+    Notifications[Method] = [Handler, this](llvm::json::Value RawParams) {
----------------
i suppose we can also drop this one after getting rid of `InitializedParams`?


================
Comment at: clang-tools-extra/clangd/ClangdLSPServer.h:93
   void onInitialize(const InitializeParams &, Callback<llvm::json::Value>);
   void onInitialized(const InitializedParams &);
+  void onShutdown(Callback<std::nullptr_t>);
----------------
any reasons for keeping `InitializedParams` ?


================
Comment at: clang-tools-extra/clangd/Protocol.h:267
 }
 using InitializedParams = NoParams;
 
----------------
and drop this too.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D95270/new/

https://reviews.llvm.org/D95270

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to