Browse Source

GDScriptTokenizer: Fix token_names order

lupoDharkael 6 years ago
parent
commit
039e3e295a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/gdscript/gdscript_tokenizer.cpp

+ 1 - 1
modules/gdscript/gdscript_tokenizer.cpp

@@ -128,8 +128,8 @@ const char *GDScriptTokenizer::token_names[TK_MAX] = {
 	"'.'",
 	"'?'",
 	"':'",
-	"'->'",
 	"'$'",
+	"'->'",
 	"'\\n'",
 	"PI",
 	"TAU",