mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
GDScript: Fix autocompletion issues with nested types
This commit is contained in:
parent
4d1f26e1fd
commit
d4abc211f1
23 changed files with 302 additions and 44 deletions
|
@ -1317,7 +1317,10 @@ public:
|
|||
FunctionNode *current_function = nullptr;
|
||||
SuiteNode *current_suite = nullptr;
|
||||
int current_line = -1;
|
||||
int current_argument = -1;
|
||||
union {
|
||||
int current_argument = -1;
|
||||
int type_chain_index;
|
||||
};
|
||||
Variant::Type builtin_type = Variant::VARIANT_MAX;
|
||||
Node *node = nullptr;
|
||||
Object *base = nullptr;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue