diff options
author | Eric M <itsjusteza@gmail.com> | 2021-05-18 13:09:19 +1000 |
---|---|---|
committer | Eric M <itsjusteza@gmail.com> | 2021-06-19 22:20:30 +1000 |
commit | d0e78c86d72de1ec5d1c49de5c5ee2fff9589efc (patch) | |
tree | 4cf90a7ab74252dae0eccb64e025910b348f92c1 /modules/visual_script/visual_script.cpp | |
parent | 0a6a71973e50e31fef7b91658ab713ae5db5033f (diff) | |
download | redot-engine-d0e78c86d72de1ec5d1c49de5c5ee2fff9589efc.tar.gz |
Added support for scripts reporting multiple errors to ScriptTextEditor
Scripts can now report multiple errors to the scripting editors in the engine. UI elements were added to support multiple errors.
Diffstat (limited to 'modules/visual_script/visual_script.cpp')
-rw-r--r-- | modules/visual_script/visual_script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/visual_script/visual_script.cpp b/modules/visual_script/visual_script.cpp index 7badb1b717..1047a4d3a3 100644 --- a/modules/visual_script/visual_script.cpp +++ b/modules/visual_script/visual_script.cpp @@ -2276,7 +2276,7 @@ void VisualScriptLanguage::make_template(const String &p_class_name, const Strin script->set_instance_base_type(p_base_class_name); } -bool VisualScriptLanguage::validate(const String &p_script, int &r_line_error, int &r_col_error, String &r_test_error, const String &p_path, List<String> *r_functions, List<ScriptLanguage::Warning> *r_warnings, Set<int> *r_safe_lines) const { +bool VisualScriptLanguage::validate(const String &p_script, const String &p_path, List<String> *r_functions, List<ScriptLanguage::ScriptError> *r_errors, List<ScriptLanguage::Warning> *r_warnings, Set<int> *r_safe_lines) const { return false; } |