Home | History | Annotate | Download | only in ast

Lines Matching refs:n1

984   int n1 = n0 + 2;  // indentation
1011 Indent(n1, "// (local) function name: ");
1018 Indent(n1, "// scope has trivial outer context\n");
1021 Indent(n1, "// strong mode scope\n");
1023 Indent(n1, "// strict mode scope\n");
1025 if (scope_inside_with_) Indent(n1, "// scope inside 'with'\n");
1026 if (scope_contains_with_) Indent(n1, "// scope contains 'with'\n");
1027 if (scope_calls_eval_) Indent(n1, "// scope calls 'eval'\n");
1028 if (scope_uses_arguments_) Indent(n1, "// scope uses 'arguments'\n");
1030 Indent(n1, "// scope uses 'super' property\n");
1032 Indent(n1, "// outer scope calls 'eval' in sloppy context\n");
1034 if (inner_scope_calls_eval_) Indent(n1, "// inner scope calls 'eval'\n");
1036 Indent(n1, "// ");
1040 Indent(n1, "// ");
1047 Indent(n1, "// function var:\n");
1048 PrintVar(n1, function_->proxy()->var());
1052 Indent(n1, "// temporary vars:\n");
1054 PrintVar(n1, temps_[i]);
1059 Indent(n1, "// local vars:\n");
1060 PrintMap(n1, &variables_);
1064 Indent(n1, "// dynamic vars:\n");
1065 PrintMap(n1, dynamics_->GetMap(DYNAMIC));
1066 PrintMap(n1, dynamics_->GetMap(DYNAMIC_LOCAL));
1067 PrintMap(n1, dynamics_->GetMap(DYNAMIC_GLOBAL));
1074 inner_scopes_[i]->Print(n1);