summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript_parser.h
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2022-03-30 17:33:27 +0200
committerGitHub <noreply@github.com>2022-03-30 17:33:27 +0200
commit543c5658ba207d07e3f78f2bf3255aae2c8020c6 (patch)
treed47e5636fc419de0ba97ad67eb0c0338804bdad1 /modules/gdscript/gdscript_parser.h
parentbfd26b33479931598ad18cc2a218b5c49edfeb73 (diff)
parent05843879184736817878f6950c05eea803bc3af2 (diff)
downloadredot-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.h2
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.