Home | History | Annotate | Download | only in src

Lines Matching refs:n1

855   int n1 = n0 + 2;  // indentation
878 Indent(n1, "// (local) function name: ");
885 Indent(n1, "// scope has trivial outer context\n");
891 Indent(n1, "// strict mode scope\n");
894 Indent(n1, "// extended mode scope\n");
897 if (scope_inside_with_) Indent(n1, "// scope inside 'with'\n");
898 if (scope_contains_with_) Indent(n1, "// scope contains 'with'\n");
899 if (scope_calls_eval_) Indent(n1, "// scope calls 'eval'\n");
901 Indent(n1, "// outer scope calls 'eval' in non-strict context\n");
903 if (inner_scope_calls_eval_) Indent(n1, "// inner scope calls 'eval'\n");
904 if (num_stack_slots_ > 0) { Indent(n1, "// ");
906 if (num_heap_slots_ > 0) { Indent(n1, "// ");
910 Indent(n1, "// function var\n");
912 PrintVar(n1, function_->proxy()->var());
915 Indent(n1, "// temporary vars\n");
917 PrintVar(n1, temps_[i]);
920 Indent(n1, "// internal vars\n");
922 PrintVar(n1, internals_[i]);
925 Indent(n1, "// local vars\n");
926 PrintMap(n1, &variables_);
928 Indent(n1, "// dynamic vars\n");
930 PrintMap(n1, dynamics_->GetMap(DYNAMIC));
931 PrintMap(n1, dynamics_->GetMap(DYNAMIC_LOCAL));
932 PrintMap(n1, dynamics_->GetMap(DYNAMIC_GLOBAL));
939 inner_scopes_[i]->Print(n1);