body = parse.checkResult(parseStatement_toMissing());
if(parse.ruleBroken) break parsing;
catches = new ArrayList<>();
while(true) {
CatchClause catchClause = parse.checkResult(parseCatchClause());
if(catchClause == null) {
break;
}
catches.add(catchClause);
if(parse.ruleBroken) break parsing;