Lines Matching refs:param_
35 if (param_) { in Iterate()
36 cb(param_); in Iterate()
44 dumper->Add({{"type", "CatchClause"}, {"body", body_}, {"param", AstDumper::Nullable(param_)}}); in Dump()
51 if (param_) { in Compile()
52 auto lref = compiler::LReference::CreateLRef(pg, param_, true); in Compile()
64 if (param_->IsIdentifier()) { in Check()
65 typeAnnotation = param_->AsIdentifier()->TypeAnnotation(); in Check()
66 } else if (param_->IsArrayPattern()) { in Check()
67 typeAnnotation = param_->AsArrayPattern()->TypeAnnotation(); in Check()
69 ASSERT(param_->IsObjectPattern()); in Check()
70 typeAnnotation = param_->AsObjectPattern()->TypeAnnotation(); in Check()
89 if (param_) { in UpdateSelf()
91 param_ = std::get<ir::AstNode *>(cb(param_))->AsExpression(); in UpdateSelf()