diff options
author | Geequlim <geequlim@gmail.com> | 2019-06-25 18:09:42 +0800 |
---|---|---|
committer | geequlim <geequlim@gmail.com> | 2019-08-11 13:30:15 +0800 |
commit | 9618b0c63e3330865350bd8bbc6a9d2faf9dd26c (patch) | |
tree | 78893c850a12bc7b72af45dc2e3b129db0bb6ddc /modules/gdscript/language_server/gdscript_extend_parser.h | |
parent | b2f02317fabe284220c74c21229e4cad6ab74e93 (diff) | |
download | redot-engine-9618b0c63e3330865350bd8bbc6a9d2faf9dd26c.tar.gz |
Check client workspace directory is valid
Drop test initialize message sent to client
Remove unused code property for the parser class
Diffstat (limited to 'modules/gdscript/language_server/gdscript_extend_parser.h')
-rw-r--r-- | modules/gdscript/language_server/gdscript_extend_parser.h | 2 |
1 files changed, 0 insertions, 2 deletions
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<String, const lsp::DocumentSymbol *> ClassMembers; class ExtendGDScriptParser : public GDScriptParser { String path; - String code; Vector<String> 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<String> &get_lines() const { return lines; } _FORCE_INLINE_ const lsp::DocumentSymbol &get_symbols() const { return class_symbol; } _FORCE_INLINE_ const Vector<lsp::Diagnostic> &get_diagnostics() const { return diagnostics; } |