Merge pull request #29780 from GodotExplorer/gdscript-lsp

Add Language Server Protocol for GDScript
This commit is contained in:
Rémi Verschelde 2019-08-28 13:06:51 +02:00 committed by GitHub
commit 46ad60385b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 4217 additions and 0 deletions

View file

@ -8257,6 +8257,10 @@ int GDScriptParser::get_error_column() const {
return error_column;
}
bool GDScriptParser::has_error() const {
return error_set;
}
Error GDScriptParser::_parse(const String &p_base_path) {
base_path = p_base_path;