godot/modules/gdscript/language_server/gdscript_text_document.cpp

/**************************************************************************/
/*  gdscript_text_document.cpp                                            */
/**************************************************************************/
/*                         This file is part of:                          */
/*                             GODOT ENGINE                               */
/*                        https://godotengine.org                         */
/**************************************************************************/
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */
/*                                                                        */
/* Permission is hereby granted, free of charge, to any person obtaining  */
/* a copy of this software and associated documentation files (the        */
/* "Software"), to deal in the Software without restriction, including    */
/* without limitation the rights to use, copy, modify, merge, publish,    */
/* distribute, sublicense, and/or sell copies of the Software, and to     */
/* permit persons to whom the Software is furnished to do so, subject to  */
/* the following conditions:                                              */
/*                                                                        */
/* The above copyright notice and this permission notice shall be         */
/* included in all copies or substantial portions of the Software.        */
/*                                                                        */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,        */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF     */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY   */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,   */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE      */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                 */
/**************************************************************************/

#include "gdscript_text_document.h"

#include "../gdscript.h"
#include "gdscript_extend_parser.h"
#include "gdscript_language_protocol.h"

#include "core/os/os.h"
#include "editor/editor_settings.h"
#include "editor/plugins/script_text_editor.h"
#include "servers/display_server.h"

void GDScriptTextDocument::_bind_methods() {}

void GDScriptTextDocument::didOpen(const Variant &p_param) {}

void GDScriptTextDocument::didClose(const Variant &p_param) {}

void GDScriptTextDocument::didChange(const Variant &p_param) {}

void GDScriptTextDocument::willSaveWaitUntil(const Variant &p_param) {}

void GDScriptTextDocument::didSave(const Variant &p_param) {}

lsp::TextDocumentItem GDScriptTextDocument::load_document_item(const Variant &p_param) {}

void GDScriptTextDocument::notify_client_show_symbol(const lsp::DocumentSymbol *symbol) {}

void GDScriptTextDocument::initialize() {}

Variant GDScriptTextDocument::nativeSymbol(const Dictionary &p_params) {}

Array GDScriptTextDocument::documentSymbol(const Dictionary &p_params) {}

Array GDScriptTextDocument::completion(const Dictionary &p_params) {}

Dictionary GDScriptTextDocument::rename(const Dictionary &p_params) {}

Variant GDScriptTextDocument::prepareRename(const Dictionary &p_params) {}

Array GDScriptTextDocument::references(const Dictionary &p_params) {}

Dictionary GDScriptTextDocument::resolve(const Dictionary &p_params) {}

Array GDScriptTextDocument::foldingRange(const Dictionary &p_params) {}

Array GDScriptTextDocument::codeLens(const Dictionary &p_params) {}

Array GDScriptTextDocument::documentLink(const Dictionary &p_params) {}

Array GDScriptTextDocument::colorPresentation(const Dictionary &p_params) {}

Variant GDScriptTextDocument::hover(const Dictionary &p_params) {}

Array GDScriptTextDocument::definition(const Dictionary &p_params) {}

Variant GDScriptTextDocument::declaration(const Dictionary &p_params) {}

Variant GDScriptTextDocument::signatureHelp(const Dictionary &p_params) {}

GDScriptTextDocument::GDScriptTextDocument() {}

void GDScriptTextDocument::sync_script_content(const String &p_path, const String &p_content) {}

void GDScriptTextDocument::show_native_symbol_in_editor(const String &p_symbol_id) {}

Array GDScriptTextDocument::find_symbols(const lsp::TextDocumentPositionParams &p_location, List<const lsp::DocumentSymbol *> &r_list) {}