Lines Matching refs:SEMICOLON
396 this->expect(Token::SEMICOLON, "';'"); in enumDeclaration()
417 if (lookahead.fKind == Token::SEMICOLON) { in declaration()
425 if (type->fKind == ASTType::kStruct_Kind && this->checkNext(Token::SEMICOLON)) { in declaration()
448 if (!this->checkNext(Token::SEMICOLON)) { in declaration()
545 this->expect(Token::SEMICOLON, "';'"); in structVarDeclaration()
607 if (!this->expect(Token::SEMICOLON, "';'")) { in varDeclarationEnd()
1034 case Token::SEMICOLON: in statement()
1130 this->expect(Token::SEMICOLON, "';'"); in interfaceBlock()
1196 if (!this->expect(Token::SEMICOLON, "';'")) { in doStatement()
1324 case Token::SEMICOLON: in forStatement()
1351 if (this->peek().fKind != Token::SEMICOLON) { in forStatement()
1357 if (!this->expect(Token::SEMICOLON, "';'")) { in forStatement()
1387 if (this->peek().fKind != Token::SEMICOLON) { in returnStatement()
1393 if (!this->expect(Token::SEMICOLON, "';'")) { in returnStatement()
1406 if (!this->expect(Token::SEMICOLON, "';'")) { in breakStatement()
1418 if (!this->expect(Token::SEMICOLON, "';'")) { in continueStatement()
1430 if (!this->expect(Token::SEMICOLON, "';'")) { in discardStatement()
1471 if (this->expect(Token::SEMICOLON, "';'")) { in expressionStatement()