From 9ecd042e785198fcad3847463aff345bf996a640 Mon Sep 17 00:00:00 2001 From: George Marques Date: Mon, 17 Aug 2020 20:14:46 -0300 Subject: GDScript: Allow "match" to be used as an identifier This is needed to call the String.match() function. --- modules/gdscript/gdscript_tokenizer.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'modules/gdscript/gdscript_tokenizer.h') diff --git a/modules/gdscript/gdscript_tokenizer.h b/modules/gdscript/gdscript_tokenizer.h index 059a226924..956530341c 100644 --- a/modules/gdscript/gdscript_tokenizer.h +++ b/modules/gdscript/gdscript_tokenizer.h @@ -168,9 +168,8 @@ public: String source; const char *get_name() const; - // TODO: Allow some keywords as identifiers? - bool is_identifier() const { return type == IDENTIFIER; } - StringName get_identifier() const { return literal; } + bool is_identifier() const; + StringName get_identifier() const { return source; } Token(Type p_type) { type = p_type; -- cgit v1.2.3