Lines Matching refs:n1
918 int n1 = n0 + 2; // indentation
945 Indent(n1, "// (local) function name: ");
952 Indent(n1, "// scope has trivial outer context\n");
955 Indent(n1, "// strict mode scope\n");
957 if (asm_module_) Indent(n1, "// scope is an asm module\n");
958 if (asm_function_) Indent(n1, "// scope is an asm function\n");
959 if (scope_inside_with_) Indent(n1, "// scope inside 'with'\n");
960 if (scope_calls_eval_) Indent(n1, "// scope calls 'eval'\n");
961 if (scope_uses_arguments_) Indent(n1, "// scope uses 'arguments'\n");
963 Indent(n1, "// scope uses 'super' property\n");
965 Indent(n1, "// outer scope calls 'eval' in sloppy context\n");
967 n1, "// inner scope calls 'eval'\n");
969 Indent(n1, "// ");
973 Indent(n1, "// ");
980 Indent(n1, "// function var:\n");
981 PrintVar(n1, function_->proxy()->var());
990 Indent(n1, "// temporary vars:\n");
992 PrintVar(n1, temps_[i]);
998 Indent(n1, "// local vars:\n");
999 PrintMap(n1, &variables_);
1003 Indent(n1, "// dynamic vars:\n");
1004 PrintMap(n1, dynamics_->GetMap(DYNAMIC));
1005 PrintMap(n1, dynamics_->GetMap(DYNAMIC_LOCAL));
1006 PrintMap(n1, dynamics_->GetMap(DYNAMIC_GLOBAL));
1013 inner_scopes_[i]->Print(n1);