MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / Serialize

Method Serialize

CodeFormatServer/src/LSP/LSP.cpp:11–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9}
10
11nlohmann::json lsp::Position::Serialize() {
12 auto object = nlohmann::json::object();
13 object["line"] = line;
14 object["character"] = character;
15
16 return object;
17}
18
19void lsp::Position::Deserialize(nlohmann::json json) {
20 line = json["line"];

Callers 5

SendNotificationMethod · 0.45
SendRequestMethod · 0.45
SerializeProtocolMethod · 0.45
ReformatMethod · 0.45
SpellMethod · 0.45

Calls 4

arrayClass · 0.50
push_backMethod · 0.45
valueMethod · 0.45
emptyMethod · 0.45

Tested by

no test coverage detected