Add property usage to array indexer

This makes the `Array` indexer show as returning `Variant` instead of `void` in the documentation.
This commit is contained in:
Raul Santos
2023-01-18 21:57:47 +01:00
parent 6ca1bf9589
commit 97610c8bfc
4 changed files with 19 additions and 2 deletions

View File

@@ -679,7 +679,7 @@
</description>
</operator>
<operator name="operator []">
<return type="void" />
<return type="Variant" />
<param index="0" name="index" type="int" />
<description>
Returns a reference to the element of type [Variant] at the specified location. Arrays start at index 0. [param index] can be a zero or positive value to start from the beginning, or a negative value to start from the end. Out-of-bounds array access causes a run-time error, which will result in an error being printed and the project execution pausing if run from the editor.