#591 Improve type switch statement error for fallthrough

This commit is contained in:
gingerBill
2020-05-13 23:33:03 +01:00
parent 7c42d4ba75
commit d59fced21b
2 changed files with 8 additions and 2 deletions
+2
View File
@@ -43,6 +43,8 @@ enum StmtFlag {
Stmt_ContinueAllowed = 1<<1,
Stmt_FallthroughAllowed = 1<<2,
Stmt_TypeSwitch = 1<<4,
Stmt_CheckScopeDecls = 1<<5,
};