if (token == TokenNameCOLON || token == TokenNameSEMICOLON) {
getNextToken();
if (token == TokenNameRBRACE) {
- // empty case; assumes that the '}' token belongs to the wrapping switch statement
+ // empty case; assumes that the '}' token belongs to the wrapping switch statement - #1371992
break;
}
if (token == TokenNamecase || token == TokenNamedefault) {
if (token == TokenNameCOLON || token == TokenNameSEMICOLON) {
getNextToken();
if (token == TokenNameRBRACE) {
- // empty default case; ; assumes that the '}' token belongs to the wrapping switch statement
+ // empty default case; ; assumes that the '}' token belongs to the wrapping switch statement - #1371992
break;
}
if (token != TokenNamecase) {