Lines Matching refs:semicolon
267 check(TOK.semicolon, "statement");
391 case TOK.semicolon:
406 check(TOK.semicolon, "terminating `;` required after do-while statement");
419 if (token.value == TOK.semicolon)
428 if (token.value == TOK.semicolon)
436 check(TOK.semicolon, "`for` condition");
552 auto exp = token.value == TOK.semicolon ? null : cparseExpression();
553 check(TOK.semicolon, "`return` statement");
560 check(TOK.semicolon, "`break` statement");
566 check(TOK.semicolon, "`continue` statement");
585 check(TOK.semicolon, "`goto` statement");
599 if (token.value == TOK.semicolon)
1623 if (token.value == TOK.semicolon)
1681 while (token.value != TOK.semicolon && token.value != TOK.endOfFile)
1717 case TOK.semicolon:
1896 error("missing comma or semicolon after declaration of `%s`, found `%s` instead", s.toChars(), token.toChars());
1901 case TOK.semicolon:
2921 check(TOK.semicolon);
3466 if (token.value == TOK.semicolon && tspec)
3582 case TOK.semicolon:
3592 while (token.value != TOK.semicolon && token.value != TOK.endOfFile)
3624 if (t.value == TOK.semicolon)
3656 case TOK.semicolon:
3687 // skip over assignment-expression, ending before comma or semiColon or EOF
3728 if (t.value != TOK.semicolon)
3756 case TOK.semicolon:
4674 while (token.value != TOK.rightCurly && token.value != TOK.semicolon && token.value != TOK.endOfFile)