Lines Matching refs:n1
790 int n1 = n0 + 2; // indentation
813 Indent(n1, "// (local) function name: ");
820 Indent(n1, "// scope has trivial outer context\n");
826 Indent(n1, "// strict mode scope\n");
829 Indent(n1, "// extended mode scope\n");
832 if (scope_inside_with_) Indent(n1, "// scope inside 'with'\n");
833 if (scope_contains_with_) Indent(n1, "// scope contains 'with'\n");
834 if (scope_calls_eval_) Indent(n1, "// scope calls 'eval'\n");
836 Indent(n1, "// outer scope calls 'eval' in non-strict context\n");
838 if (inner_scope_calls_eval_) Indent(n1, "// inner scope calls 'eval'\n");
839 if (num_stack_slots_ > 0) { Indent(n1, "// ");
841 if (num_heap_slots_ > 0) { Indent(n1, "// ");
845 Indent(n1, "// function var\n");
847 PrintVar(n1, function_->var());
850 Indent(n1, "// temporary vars\n");
852 PrintVar(n1, temps_[i]);
855 Indent(n1, "// local vars\n");
856 PrintMap(n1, &variables_);
858 Indent(n1, "// dynamic vars\n");
860 PrintMap(n1, dynamics_->GetMap(DYNAMIC));
861 PrintMap(n1, dynamics_->GetMap(DYNAMIC_LOCAL));
862 PrintMap(n1, dynamics_->GetMap(DYNAMIC_GLOBAL));
869 inner_scopes_[i]->Print(n1);