Lines Matching refs:TK_SEMICOLON
313 case Token::Kind::TK_SEMICOLON: in declaration()
326 if (lookahead.fKind == Token::Kind::TK_SEMICOLON) { in declaration()
382 if (!this->checkNext(Token::Kind::TK_SEMICOLON)) { in functionDeclarationEnd()
479 this->expect(Token::Kind::TK_SEMICOLON, "';'"); in globalVarDeclarationEnd()
518 this->expect(Token::Kind::TK_SEMICOLON, "';'"); in localVarDeclarationEnd()
616 if (!this->expect(Token::Kind::TK_SEMICOLON, "';'")) { in structDeclaration()
637 this->expect(Token::Kind::TK_SEMICOLON, "';'"); in structVarDeclaration()
803 case Token::Kind::TK_SEMICOLON: in statement()
878 if (!this->expect(Token::Kind::TK_SEMICOLON, "';'")) { in interfaceBlock()
896 this->expect(Token::Kind::TK_SEMICOLON, "';'"); in interfaceBlock()
967 if (!this->expect(Token::Kind::TK_SEMICOLON, "';'")) { in doStatement()
1091 if (nextToken.fKind == Token::Kind::TK_SEMICOLON) { in forStatement()
1102 if (this->peek().fKind != Token::Kind::TK_SEMICOLON) { in forStatement()
1109 if (!this->expect(Token::Kind::TK_SEMICOLON, "';'")) { in forStatement()
1141 if (this->peek().fKind != Token::Kind::TK_SEMICOLON) { in returnStatement()
1148 if (!this->expect(Token::Kind::TK_SEMICOLON, "';'")) { in returnStatement()
1161 if (!this->expect(Token::Kind::TK_SEMICOLON, "';'")) { in breakStatement()
1173 if (!this->expect(Token::Kind::TK_SEMICOLON, "';'")) { in continueStatement()
1185 if (!this->expect(Token::Kind::TK_SEMICOLON, "';'")) { in discardStatement()
1227 if (!this->expect(Token::Kind::TK_SEMICOLON, "';'")) { in expressionStatement()