Home | History | Annotate | Download | only in src

Lines Matching refs:scope

553 void PrettyPrinter::PrintParameters(Scope* scope) {
555 for (int i = 0; i < scope->num_parameters(); i++) {
557 PrintLiteral(scope->parameter(i)->name(), false);
574 PrintParameters(function->scope());
576 PrintDeclarations(function->scope()->declarations());
692 PrintParameters(program->scope());
693 PrintDeclarations(program->scope()->declarations());
710 void AstPrinter::PrintParameters(Scope* scope) {
711 if (scope->num_parameters() > 0) {
713 for (int i = 0; i < scope->num_parameters(); i++) {
714 PrintLiteralWithModeIndented("VAR", scope->parameter(i),
715 scope->parameter(i)->name());
883 PrintParameters(node->scope());
1278 VisitDeclarations(expr->scope()->declarations());