mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Replace Array return types with TypedArray
This commit is contained in:
parent
b9ea0e1338
commit
8be27dc59e
110 changed files with 298 additions and 272 deletions
|
@ -52,7 +52,7 @@ protected:
|
|||
virtual void _stage_file(String p_file_path);
|
||||
virtual void _unstage_file(String p_file_path);
|
||||
virtual void _commit(String p_msg);
|
||||
virtual Array _get_file_diff(String p_file_path);
|
||||
virtual TypedArray<Dictionary> _get_file_diff(String p_file_path);
|
||||
virtual bool _shut_down();
|
||||
virtual String _get_project_name();
|
||||
virtual String _get_vcs_name();
|
||||
|
@ -76,7 +76,7 @@ public:
|
|||
void stage_file(String p_file_path);
|
||||
void unstage_file(String p_file_path);
|
||||
void commit(String p_msg);
|
||||
Array get_file_diff(String p_file_path);
|
||||
TypedArray<Dictionary> get_file_diff(String p_file_path);
|
||||
bool shut_down();
|
||||
String get_project_name();
|
||||
String get_vcs_name();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue