Home | History | Annotate | Download | only in src

Lines Matching defs:fun

56 void FullCodeGenSyntaxChecker::Check(FunctionLiteral* fun) {
57 Scope* scope = fun->scope();
61 VisitStatements(fun->body());
89 if (decl->fun() != NULL) {
90 Visit(decl->fun());
320 Expression* fun = expr->expression();
322 Variable* var = fun->AsVariableProxy()->AsVariable();
332 } else if (fun->AsProperty() != NULL) {
333 Property* prop = fun->AsProperty();
340 Visit(fun);
518 if (decl->fun() == NULL) {
527 Compiler::BuildBoilerplate(decl->fun(), script(), this);
541 void FullCodeGenerator::SetFunctionPosition(FunctionLiteral* fun) {
543 CodeGenerator::RecordPositions(masm_, fun->start_position());
548 void FullCodeGenerator::SetReturnPosition(FunctionLiteral* fun) {
550 CodeGenerator::RecordPositions(masm_, fun->end_position());