diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-07-21 23:13:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-21 23:13:51 +0200 |
commit | 92415365c8586dd0c91b0566d7c00753e0687273 (patch) | |
tree | 6738691794c9dfb3d8a3794b81501c1576356cb1 /modules/gdnative/nativescript/nativescript.cpp | |
parent | 2b9902db06d922fc98ae49c0d1e31123feed469a (diff) | |
parent | 3e87ad518742d93aaaddbfb9cdabe59aceabb159 (diff) |
Merge pull request #19264 from vnen/typed-gdscript-final
Typed GDScript
Diffstat (limited to 'modules/gdnative/nativescript/nativescript.cpp')
-rw-r--r-- | modules/gdnative/nativescript/nativescript.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/nativescript/nativescript.cpp b/modules/gdnative/nativescript/nativescript.cpp index 7bab718b81..5e093109d5 100644 --- a/modules/gdnative/nativescript/nativescript.cpp +++ b/modules/gdnative/nativescript/nativescript.cpp @@ -1053,7 +1053,7 @@ Ref<Script> NativeScriptLanguage::get_template(const String &p_class_name, const s->set_class_name(p_class_name); return Ref<NativeScript>(s); } -bool NativeScriptLanguage::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) const { +bool NativeScriptLanguage::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, Set<int> *r_safe_lines) const { return true; } |