You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 12:20:30 +00:00
Parse more informations for code completion
This commit is contained in:
@@ -143,7 +143,6 @@ class ScriptTextEditor : public ScriptEditorBase {
|
||||
};
|
||||
|
||||
protected:
|
||||
static void _code_complete_scripts(void *p_ud, const String &p_code, List<String> *r_options, bool &r_force);
|
||||
void _update_breakpoint_list();
|
||||
void _breakpoint_item_pressed(int p_idx);
|
||||
void _breakpoint_toggled(int p_row);
|
||||
@@ -151,7 +150,10 @@ protected:
|
||||
void _validate_script(); // No longer virtual.
|
||||
void _update_bookmark_list();
|
||||
void _bookmark_item_pressed(int p_idx);
|
||||
void _code_complete_script(const String &p_code, List<String> *r_options, bool &r_force);
|
||||
|
||||
static void _code_complete_scripts(void *p_ud, const String &p_code, List<ScriptCodeCompletionOption> *r_options, bool &r_force);
|
||||
void _code_complete_script(const String &p_code, List<ScriptCodeCompletionOption> *r_options, bool &r_force);
|
||||
|
||||
void _load_theme_settings();
|
||||
void _set_theme_for_script();
|
||||
void _show_warnings_panel(bool p_show);
|
||||
|
||||
Reference in New Issue
Block a user