Home | History | Annotate | Download | only in src

Lines Matching defs:Indent

733 static void Indent(int n, const char* str) {
764 static void PrintVar(int indent, Variable* var) {
766 Indent(indent, Variable::Mode2String(var->mode()));
780 static void PrintMap(int indent, VariableMap* map) {
783 PrintVar(indent, var);
793 Indent(n0, Header(type_));
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");
850 Indent(n1, "// temporary vars\n");
855 Indent(n1, "// local vars\n");
858 Indent(n1, "// dynamic vars\n");
873 Indent(n0, "}\n");