Lines Matching refs:program
425 const char* PrettyPrinter::PrintExpression(FunctionLiteral* program) {
428 program->body()->at(0)->AsExpressionStatement();
434 const char* PrettyPrinter::PrintProgram(FunctionLiteral* program) {
436 PrintStatements(program->body());
687 const char* AstPrinter::PrintProgram(FunctionLiteral* program) {
690 program->name(), true);
691 PrintLiteralIndented("INFERRED NAME", program->inferred_name(), true);
692 PrintParameters(program->scope());
693 PrintDeclarations(program->scope()->declarations());
694 PrintStatements(program->body());
1119 const char* JsonAstBuilder::BuildProgram(FunctionLiteral* program) {
1121 Visit(program);