Lines Matching refs:func_
29 cb(func_); in Iterate()
34 dumper->Add({{"type", "FunctionExpression"}, {"function", func_}}); in Dump()
39 pg->DefineFunction(func_, func_, func_->Scope()->InternalName()); in Compile()
46 if (func_->Parent()->Parent() && func_->Parent()->Parent()->IsVariableDeclarator() && in Check()
47 func_->Parent()->Parent()->AsVariableDeclarator()->Id()->IsIdentifier()) { in Check()
48 … funcVar = func_->Parent()->Parent()->AsVariableDeclarator()->Id()->AsIdentifier()->Variable(); in Check()
51 checker::ScopeContext scopeCtx(checker, func_->Scope()); in Check()
54 checker->CheckFunctionParameterDeclarations(func_->Params(), signatureInfo); in Check()
64 signature->SetReturnType(checker->HandleFunctionReturn(func_)); in Check()
66 func_->Body()->Check(checker); in Check()
73 func_ = std::get<ir::AstNode *>(cb(func_))->AsScriptFunction(); in UpdateSelf()