mirror of
https://github.com/open-goal/jak-project
synced 2026-06-26 10:31:54 -04:00
7dd716ded5
Better documentation on what is supported / makes it faster to type them without making mistakes. 
16 lines
403 B
C++
16 lines
403 B
C++
#include <optional>
|
|
|
|
#include "lsp/protocol/common_types.h"
|
|
#include "lsp/protocol/completion.h"
|
|
#include "lsp/state/data/mips_instructions.h"
|
|
#include "lsp/state/workspace.h"
|
|
|
|
std::optional<json> get_completions_handler(Workspace& workspace, int id, json params) {
|
|
auto converted_params = params.get<LSPSpec::CompletionParams>();
|
|
|
|
// TODO - implement response object
|
|
|
|
return json::array();
|
|
;
|
|
}
|