mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
GDScript: Add static typing for for
loop variable
This commit is contained in:
parent
0511f9d9a7
commit
6c59ed9485
20 changed files with 177 additions and 17 deletions
|
@ -814,6 +814,8 @@ public:
|
|||
|
||||
struct ForNode : public Node {
|
||||
IdentifierNode *variable = nullptr;
|
||||
TypeNode *datatype_specifier = nullptr;
|
||||
bool use_conversion_assign = false;
|
||||
ExpressionNode *list = nullptr;
|
||||
SuiteNode *loop = nullptr;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue