mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 15:21:56 -05:00
GDScript: Add static typing for for loop variable
This commit is contained in:
@@ -145,8 +145,8 @@ public:
|
||||
virtual void write_jump_if_shared(const Address &p_value) = 0;
|
||||
virtual void write_end_jump_if_shared() = 0;
|
||||
virtual void start_for(const GDScriptDataType &p_iterator_type, const GDScriptDataType &p_list_type) = 0;
|
||||
virtual void write_for_assignment(const Address &p_variable, const Address &p_list) = 0;
|
||||
virtual void write_for() = 0;
|
||||
virtual void write_for_assignment(const Address &p_list) = 0;
|
||||
virtual void write_for(const Address &p_variable, bool p_use_conversion) = 0;
|
||||
virtual void write_endfor() = 0;
|
||||
virtual void start_while_condition() = 0; // Used to allow a jump to the expression evaluation.
|
||||
virtual void write_while(const Address &p_condition) = 0;
|
||||
|
||||
Reference in New Issue
Block a user