diff options
author | Max Hilbrunner <m.hilbrunner@gmail.com> | 2021-10-28 12:18:24 +0200 |
---|---|---|
committer | Max Hilbrunner <m.hilbrunner@gmail.com> | 2021-10-28 13:01:53 +0200 |
commit | 626ca50676df4e47afd7fe7357d772b232a40145 (patch) | |
tree | 45156d7b8273f88bfbf3c18a6f0d5ba25651021a /modules/gdscript/gdscript_tokenizer.h | |
parent | 0767a1c3f5c690d1685265f35ce8a4d58800bbb1 (diff) |
Improve GDScript indentation error message
Diffstat (limited to 'modules/gdscript/gdscript_tokenizer.h')
-rw-r--r-- | modules/gdscript/gdscript_tokenizer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdscript/gdscript_tokenizer.h b/modules/gdscript/gdscript_tokenizer.h index 84b82c07f0..b4ee11fd9a 100644 --- a/modules/gdscript/gdscript_tokenizer.h +++ b/modules/gdscript/gdscript_tokenizer.h @@ -233,6 +233,7 @@ private: bool has_error() const { return !error_stack.is_empty(); } Token pop_error(); char32_t _advance(); + String _get_indent_char_name(char32_t ch); void _skip_whitespace(); void check_indent(); |