diff options
| author | Andreas Haas | 2018-03-09 23:34:32 +0100 |
|---|---|---|
| committer | Hein-Pieter van Braam | 2018-04-15 00:48:11 +0200 |
| commit | 6472d8c7d4db3aed63af028f227a97001f4b861f (patch) | |
| tree | bffefe14bea63f24db8eb7c51d38a7d135d06118 /core/script_language.h | |
| parent | e4fadebc3b6f1bb06a9a91e86f15a171cbdc0c4d (diff) | |
| download | godot-6472d8c7d4db3aed63af028f227a97001f4b861f.tar.gz godot-6472d8c7d4db3aed63af028f227a97001f4b861f.tar.zst godot-6472d8c7d4db3aed63af028f227a97001f4b861f.zip | |
Mono: Avoid invalid class names.
Disallow reserved keywords as class names and prefix base class with the Godot
namespace if it's the same as the class name.
Fixes #12483
(cherry picked from commit 700d07cf7cae4e28de107e0c274b27c857d98450)
Diffstat (limited to 'core/script_language.h')
| -rw-r--r-- | core/script_language.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/script_language.h b/core/script_language.h index d1da0a3b7..6d32fc054 100644 --- a/core/script_language.h +++ b/core/script_language.h @@ -203,6 +203,7 @@ public: virtual void make_template(const String &p_class_name, const String &p_base_class_name, Ref<Script> &p_script) {} virtual bool is_using_templates() { return false; } virtual bool 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 = NULL) const = 0; + virtual String validate_path(const String &p_path) const { return ""; } virtual Script *create_script() const = 0; virtual bool has_named_classes() const = 0; virtual bool supports_builtin_mode() const = 0; |
