From 9618b0c63e3330865350bd8bbc6a9d2faf9dd26c Mon Sep 17 00:00:00 2001 From: Geequlim Date: Tue, 25 Jun 2019 18:09:42 +0800 Subject: Check client workspace directory is valid Drop test initialize message sent to client Remove unused code property for the parser class --- modules/gdscript/language_server/gdscript_extend_parser.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'modules/gdscript/language_server/gdscript_extend_parser.h') diff --git a/modules/gdscript/language_server/gdscript_extend_parser.h b/modules/gdscript/language_server/gdscript_extend_parser.h index 3710b92993..e2da500d0d 100644 --- a/modules/gdscript/language_server/gdscript_extend_parser.h +++ b/modules/gdscript/language_server/gdscript_extend_parser.h @@ -52,7 +52,6 @@ typedef HashMap ClassMembers; class ExtendGDScriptParser : public GDScriptParser { String path; - String code; Vector lines; lsp::DocumentSymbol class_symbol; @@ -73,7 +72,6 @@ class ExtendGDScriptParser : public GDScriptParser { public: _FORCE_INLINE_ const String &get_path() const { return path; } - _FORCE_INLINE_ const String &get_code() const { return code; } _FORCE_INLINE_ const Vector &get_lines() const { return lines; } _FORCE_INLINE_ const lsp::DocumentSymbol &get_symbols() const { return class_symbol; } _FORCE_INLINE_ const Vector &get_diagnostics() const { return diagnostics; } -- cgit v1.2.3