Lines Matching refs:statements_
27 : Expression(AstNodeType::BLOCK_EXPRESSION), statements_(std::move(statements))
29 for (auto *const node : statements_) {
36 : Expression(static_cast<Expression const &>(other)), statements_(allocator->Adapter())
38 for (auto *const node : other.statements_) {
39 statements_.emplace_back(node->Clone(allocator, this)->AsStatement());
56 for (auto *&node : statements_) {
66 for (auto *const node : statements_) {
73 dumper->Add({{"type", "BlockExpression"}, {"statements", statements_}});
79 for (auto *statement : statements_) {
81 if (statement != statements_.back()) {