diff options
author | Max Hilbrunner <mhilbrunner@users.noreply.github.com> | 2018-05-29 11:49:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-29 11:49:37 +0200 |
commit | 37146897673f66f51736bd7022a6682285d87f47 (patch) | |
tree | 76f810cefb7542fc4e3040d52810899a5e4ea40c /modules/gdscript/gdscript_tokenizer.cpp | |
parent | d0b62ce1558766134ea2fc6bcf912e837d0ae40b (diff) | |
parent | 4c69a495c948b1698a1634b506bf660bd49cdd76 (diff) |
Merge pull request #19243 from godotengine/revert-19021-rpc_sync_fix
Revert "RPCMode refactor, more sync modes"
Diffstat (limited to 'modules/gdscript/gdscript_tokenizer.cpp')
-rw-r--r-- | modules/gdscript/gdscript_tokenizer.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/modules/gdscript/gdscript_tokenizer.cpp b/modules/gdscript/gdscript_tokenizer.cpp index 3c8e1ddbe4..6a844cd651 100644 --- a/modules/gdscript/gdscript_tokenizer.cpp +++ b/modules/gdscript/gdscript_tokenizer.cpp @@ -110,9 +110,6 @@ const char *GDScriptTokenizer::token_names[TK_MAX] = { "sync", "master", "slave", - "remotesync", - "mastersync", - "slavesync", "'['", "']'", "'{'", @@ -204,9 +201,6 @@ static const _kws _keyword_list[] = { { GDScriptTokenizer::TK_PR_MASTER, "master" }, { GDScriptTokenizer::TK_PR_SLAVE, "slave" }, { GDScriptTokenizer::TK_PR_SYNC, "sync" }, - { GDScriptTokenizer::TK_PR_REMOTESYNC, "remotesync" }, - { GDScriptTokenizer::TK_PR_MASTERSYNC, "mastersync" }, - { GDScriptTokenizer::TK_PR_SLAVESYNC, "slavesync" }, { GDScriptTokenizer::TK_PR_CONST, "const" }, { GDScriptTokenizer::TK_PR_ENUM, "enum" }, //controlflow @@ -253,9 +247,6 @@ bool GDScriptTokenizer::is_token_literal(int p_offset, bool variable_safe) const case TK_PR_MASTER: case TK_PR_SLAVE: case TK_PR_SYNC: - case TK_PR_REMOTESYNC: - case TK_PR_MASTERSYNC: - case TK_PR_SLAVESYNC: return true; // Literal for non-variables only: |