Lines Matching defs:next
1018 // renumber them to shift down so the next function literal id for
1160 Token::Value next = peek();
1162 if (next == Token::EXPORT) {
1166 if (next == Token::IMPORT) {
1269 Token::Value next = Next();
1272 if (V8_LIKELY(Token::IsPropertyName(next))) {
1277 if (next == Token::STRING) {
1289 ReportUnexpectedToken(next);
2270 ForStatement* loop, Statement* init, Expression* cond, Statement* next,
2273 // copied into a new environment. Moreover, the "next" statement must be
2280 // labels: for (let/const x = i; cond; next) body
2295 // next;
2336 if (next) {
2387 // Make statement: if (first == 1) { first = 0; } else { next; }
2388 if (next) {
2409 compare, clear_first, next, kNoSourcePosition);
2542 Expression* next = nary->first();
2544 AddArrowFunctionFormalParameters(parameters, next,
2546 next = nary->subsequent(i);
2548 AddArrowFunctionFormalParameters(parameters, next, end_pos);