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

Merge pull request #108306 from Chaosus/gds_fix_super_completion

Fix lookup symbol for `super()`
This commit is contained in:
Thaddeus Crews
2025-07-17 10:34:48 -05:00
4 changed files with 30 additions and 1 deletions

View File

@@ -1300,6 +1300,7 @@ public:
COMPLETION_PROPERTY_METHOD, // Property setter or getter (list available methods).
COMPLETION_RESOURCE_PATH, // For load/preload.
COMPLETION_SUBSCRIPT, // Inside id[|].
COMPLETION_SUPER, // super(), used for lookup.
COMPLETION_SUPER_METHOD, // After super.
COMPLETION_TYPE_ATTRIBUTE, // Attribute in type name (Type.|).
COMPLETION_TYPE_NAME, // Name of type (after :).