Home
last modified time | relevance | path

Searched refs:first_yield_id (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/ast/
Dast-numbering.cc299 node->set_yield_count(yield_count_ - node->first_yield_id()); in VisitDoWhileStatement()
310 node->set_yield_count(yield_count_ - node->first_yield_id()); in VisitWhileStatement()
413 node->set_yield_count(yield_count_ - node->first_yield_id()); in VisitForInStatement()
428 node->set_yield_count(yield_count_ - node->first_yield_id()); in VisitForOfStatement()
481 node->set_yield_count(yield_count_ - node->first_yield_id()); in VisitForStatement()
Dast.h567 int first_yield_id() const { return first_yield_id_; } in first_yield_id() function
569 void set_first_yield_id(int first_yield_id) { in set_first_yield_id() argument
570 first_yield_id_ = first_yield_id; in set_first_yield_id()
/external/v8/src/interpreter/
Dbytecode-generator.cc719 size_t first_yield = stmt->first_yield_id(); in VisitIterationHeader()