diff options
| author | Rémi Verschelde <remi@verschelde.fr> | 2022-03-30 17:33:27 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-30 17:33:27 +0200 |
| commit | 543c5658ba207d07e3f78f2bf3255aae2c8020c6 (patch) | |
| tree | d47e5636fc419de0ba97ad67eb0c0338804bdad1 /modules/gdscript/gdscript_parser.h | |
| parent | bfd26b33479931598ad18cc2a218b5c49edfeb73 (diff) | |
| parent | 05843879184736817878f6950c05eea803bc3af2 (diff) | |
| download | redot-engine-543c5658ba207d07e3f78f2bf3255aae2c8020c6.tar.gz | |
Merge pull request #58983 from Chaosus/gds_fix_builtin_methods_completion
Diffstat (limited to 'modules/gdscript/gdscript_parser.h')
| -rw-r--r-- | modules/gdscript/gdscript_parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_parser.h b/modules/gdscript/gdscript_parser.h index c09b07282f..0da1896936 100644 --- a/modules/gdscript/gdscript_parser.h +++ b/modules/gdscript/gdscript_parser.h @@ -1146,7 +1146,7 @@ public: COMPLETION_ASSIGN, // Assignment based on type (e.g. enum values). COMPLETION_ATTRIBUTE, // After id.| to look for members. COMPLETION_ATTRIBUTE_METHOD, // After id.| to look for methods. - COMPLETION_BUILT_IN_TYPE_CONSTANT, // Constants inside a built-in type (e.g. Color.blue). + COMPLETION_BUILT_IN_TYPE_CONSTANT_OR_STATIC_METHOD, // Constants inside a built-in type (e.g. Color.BLUE) or static methods (e.g. Color.html). COMPLETION_CALL_ARGUMENTS, // Complete with nodes, input actions, enum values (or usual expressions). // TODO: COMPLETION_DECLARATION, // Potential declaration (var, const, func). COMPLETION_GET_NODE, // Get node with $ notation. |
