diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-02-20 15:26:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-20 15:26:46 +0100 |
commit | 1a36141481a919178de26777a0065d4aeabc8404 (patch) | |
tree | a9bf25afbcdb74aaddf0089c1399e062f381cc4a /modules/gdscript/gdscript_tokenizer.h | |
parent | 6709ff6a965877ccbeb9b016daad6e3159cee4e7 (diff) | |
parent | d35003d92ae97c515b6fd2c319df2d7a8f14e28d (diff) |
Merge pull request #26048 from akien-mga/free-switch-for-everyone
GDScript: Remove unused `switch`, `case` and `do` CF keywords
Diffstat (limited to 'modules/gdscript/gdscript_tokenizer.h')
-rw-r--r-- | modules/gdscript/gdscript_tokenizer.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/modules/gdscript/gdscript_tokenizer.h b/modules/gdscript/gdscript_tokenizer.h index e4315f7969..88e44c6e0f 100644 --- a/modules/gdscript/gdscript_tokenizer.h +++ b/modules/gdscript/gdscript_tokenizer.h @@ -86,10 +86,7 @@ public: TK_CF_ELIF, TK_CF_ELSE, TK_CF_FOR, - TK_CF_DO, TK_CF_WHILE, - TK_CF_SWITCH, - TK_CF_CASE, TK_CF_BREAK, TK_CF_CONTINUE, TK_CF_PASS, @@ -118,7 +115,7 @@ public: TK_PR_REMOTE, TK_PR_SYNC, TK_PR_MASTER, - TK_PR_SLAVE, + TK_PR_SLAVE, // Deprecated by TK_PR_PUPPET, to remove in 4.0 TK_PR_PUPPET, TK_PR_REMOTESYNC, TK_PR_MASTERSYNC, |