From 03746da73f275030832f83373388cb0f248616eb Mon Sep 17 00:00:00 2001 From: George Marques Date: Tue, 5 Jun 2018 13:50:21 -0300 Subject: Add editor highlight for type-safe lines The line number is hightlighted to indicate that the line contains only type-safe code. --- modules/visual_script/visual_script.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/visual_script/visual_script.cpp') diff --git a/modules/visual_script/visual_script.cpp b/modules/visual_script/visual_script.cpp index 9331092171..af9fea6681 100644 --- a/modules/visual_script/visual_script.cpp +++ b/modules/visual_script/visual_script.cpp @@ -2402,7 +2402,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 *r_functions) const { +bool VisualScriptLanguage::validate(const String &p_script, int &r_line_error, int &r_col_error, String &r_test_error, const String &p_path, List *r_functions, Set *r_safe_lines) const { return false; } -- cgit v1.2.3