parse.consumeRequired(DeeTokens.SEMICOLON);
return parse.resultConclude(new StatementGotoCase(exp));
}
if(tryConsume(DeeTokens.KW_DEFAULT)) {
parse.consumeRequired(DeeTokens.SEMICOLON);
return parse.resultConclude(new StatementGotoDefault());
}
Symbol label = parseIdSymbol();
parse.consumeRequired(DeeTokens.SEMICOLON);
return parse.resultConclude(new StatementGoto(label));