Lines Matching refs:n1
447 int n1 = n0 + 2; // indentation
470 Indent(n1, "// (local) function name: ");
477 Indent(n1, "// scope has trivial outer context\n");
479 if (scope_inside_with_) Indent(n1, "// scope inside 'with'\n");
480 if (scope_contains_with_) Indent(n1, "// scope contains 'with'\n");
481 if (scope_calls_eval_) Indent(n1, "// scope calls 'eval'\n");
482 if (outer_scope_calls_eval_) Indent(n1, "// outer scope calls 'eval'\n");
483 if (inner_scope_calls_eval_) Indent(n1, "// inner scope calls 'eval'\n");
485 Indent(n1, "// outer scope is 'eval' scope\n");
487 if (num_stack_slots_ > 0) { Indent(n1, "// ");
489 if (num_heap_slots_ > 0) { Indent(n1, "// ");
494 Indent(n1, "// function var\n");
496 PrintVar(&printer, n1, function_);
499 Indent(n1, "// temporary vars\n");
501 PrintVar(&printer, n1, temps_[i]);
504 Indent(n1, "// local vars\n");
505 PrintMap(&printer, n1, &variables_);
507 Indent(n1, "// dynamic vars\n");
509 PrintMap(&printer, n1, dynamics_->GetMap(Variable::DYNAMIC));
510 PrintMap(&printer, n1, dynamics_->GetMap(Variable::DYNAMIC_LOCAL));
511 PrintMap(&printer, n1, dynamics_->GetMap(Variable::DYNAMIC_GLOBAL));
518 inner_scopes_[i]->Print(n1);