1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

Do ctrl-click on any code identifier to go to definiton or help page.

This commit is contained in:
Juan Linietsky
2016-09-12 10:52:29 -03:00
parent 78f92dbcb9
commit 37f1e86108
12 changed files with 778 additions and 9 deletions

View File

@@ -432,6 +432,7 @@ private:
int completion_line;
int completion_argument;
bool completion_found;
bool completion_ident_is_call;
PropertyInfo current_export;
@@ -478,7 +479,7 @@ public:
BlockNode *get_completion_block();
FunctionNode *get_completion_function();
int get_completion_argument_index();
int get_completion_identifier_is_function();
void clear();
GDParser();