diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-07-06 15:31:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-06 15:31:19 +0200 |
commit | 635d447a69cea1bac19c8ffd2bfc38fc3753441d (patch) | |
tree | 1a3c713560f2c895e1b7080782a6380ad3cad290 /doc/classes | |
parent | ea61cd3b320b145fc0dffb7056c01b5672432d90 (diff) | |
parent | a9098e6147d294378bf7c62fb10c83a0d2670b33 (diff) |
Merge pull request #62713 from YuriSizov/docs-scripting-annotations
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/ScriptLanguageExtension.xml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/doc/classes/ScriptLanguageExtension.xml b/doc/classes/ScriptLanguageExtension.xml index 0f757cf806..45d4cf44fa 100644 --- a/doc/classes/ScriptLanguageExtension.xml +++ b/doc/classes/ScriptLanguageExtension.xml @@ -174,6 +174,11 @@ <description> </description> </method> + <method name="_get_public_annotations" qualifiers="virtual const"> + <return type="Dictionary[]" /> + <description> + </description> + </method> <method name="_get_public_constants" qualifiers="virtual const"> <return type="Dictionary" /> <description> @@ -378,7 +383,9 @@ </constant> <constant name="LOOKUP_RESULT_CLASS_TBD_GLOBALSCOPE" value="7" enum="LookupResultType"> </constant> - <constant name="LOOKUP_RESULT_MAX" value="8" enum="LookupResultType"> + <constant name="LOOKUP_RESULT_CLASS_ANNOTATION" value="8" enum="LookupResultType"> + </constant> + <constant name="LOOKUP_RESULT_MAX" value="9" enum="LookupResultType"> </constant> <constant name="LOCATION_LOCAL" value="0" enum="CodeCompletionLocation"> The option is local to the location of the code completion query - e.g. a local variable. |