Lines Matching refs:body_
415 : body_(body), in RegExpQuantifier()
441 RegExpTree* body() { return body_; } in body()
444 RegExpTree* body_;
456 : body_(nullptr), index_(index), name_(nullptr) {} in RegExpCapture()
466 int min_match() override { return body_->min_match(); } in min_match()
467 int max_match() override { return body_->max_match(); } in max_match()
468 RegExpTree* body() { return body_; } in body()
469 void set_body(RegExpTree* body) { body_ = body; } in set_body()
477 RegExpTree* body_;
484 explicit RegExpGroup(RegExpTree* body) : body_(body) {} in RegExpGroup()
488 return body_->ToNode(compiler, on_success); in ToNode()
491 bool IsAnchoredAtStart() override { return body_->IsAnchoredAtStart(); } in IsAnchoredAtStart()
492 bool IsAnchoredAtEnd() override { return body_->IsAnchoredAtEnd(); } in IsAnchoredAtEnd()
494 int min_match() override { return body_->min_match(); } in min_match()
495 int max_match() override { return body_->max_match(); } in max_match()
496 Interval CaptureRegisters() override { return body_->CaptureRegisters(); } in CaptureRegisters()
497 RegExpTree* body() { return body_; } in body()
500 RegExpTree* body_;
509 : body_(body), in RegExpLookaround()
523 RegExpTree* body() { return body_; } in body()
546 RegExpTree* body_;