Home | History | Annotate | Download | only in src

Lines Matching defs:Indent

788 static void Indent(int n, const char* str) {
818 static void PrintVar(int indent, Variable* var) {
820 Indent(indent, Variable::Mode2String(var->mode()));
840 static void PrintMap(int indent, VariableMap* map) {
843 PrintVar(indent, var);
853 Indent(n0, Header(scope_type_));
873 Indent(n1, "// (local) function name: ");
880 Indent(n1, "// scope has trivial outer context\n");
883 Indent(n1, "// strict mode scope\n");
885 if (scope_inside_with_) Indent(n1, "// scope inside 'with'\n");
886 if (scope_contains_with_) Indent(n1, "// scope contains 'with'\n");
887 if (scope_calls_eval_) Indent(n1, "// scope calls 'eval'\n");
889 Indent(n1, "// outer scope calls 'eval' in sloppy context\n");
891 if (inner_scope_calls_eval_) Indent(n1, "// inner scope calls 'eval'\n");
892 if (num_stack_slots_ > 0) { Indent(n1, "// ");
894 if (num_heap_slots_ > 0) { Indent(n1, "// ");
899 Indent(n1, "// function var:\n");
904 Indent(n1, "// temporary vars:\n");
911 Indent(n1, "// internal vars:\n");
918 Indent(n1, "// local vars:\n");
923 Indent(n1, "// dynamic vars:\n");
937 Indent(n0, "}\n");